Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 73456
b: refs/heads/master
c: 9dcb5f4
h: refs/heads/master
v: v3
  • Loading branch information
Michael Buesch authored and Jeff Garzik committed Nov 10, 2007
1 parent 62dfd65 commit 40a3e32
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 440cb58a7aa979fabb02a38e55bfe93adde0f41c
refs/heads/master: 9dcb5f477ffa757b7f1817da557905ccae17fc37
8 changes: 8 additions & 0 deletions trunk/drivers/net/wireless/b43/pcmcia.c
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,14 @@ static int __devinit b43_pcmcia_probe(struct pcmcia_device *dev)
if (res != CS_SUCCESS)
goto err_disable;

dev->irq.Attributes = IRQ_TYPE_DYNAMIC_SHARING | IRQ_FIRST_SHARED;
dev->irq.IRQInfo1 = IRQ_LEVEL_ID | IRQ_SHARE_ID;
dev->irq.Handler = NULL; /* The handler is registered later. */
dev->irq.Instance = NULL;
res = pcmcia_request_irq(dev, &dev->irq);
if (res != CS_SUCCESS)
goto err_disable;

res = pcmcia_request_configuration(dev, &dev->conf);
if (res != CS_SUCCESS)
goto err_disable;
Expand Down

0 comments on commit 40a3e32

Please sign in to comment.