diff options
author | Alan Cox <alan@lxorguk.ukuu.org.uk> | 2008-09-23 08:53:09 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2008-09-24 16:18:04 -0400 |
commit | 47cbb1107e4172f3632713d74dc8651a32ceb294 (patch) | |
tree | d631ca41ecc140e594c524f879ea5a7e7cb6e3cd /drivers/net/wireless/wavelan_cs.c | |
parent | 638af07386972861272ed9d0cff01cad528fdceb (diff) |
pcmcia: Fix up legacy driver IRQs
The PCMCIA layer obsoleted asking for per device private IRQS some years
ago and all the drivers by inspection correctly use dev_id and handle
shared interrupts [they get em anyway in most PCI bridged PCMCIA/Cardbus]
so can be adjusted.
This gets rid of the various bugs reported where there is spewage about
conflicting irq types and sometimes the driver won't load.
(Note I don't have all of these devices to test each one beyond by inspection)
Signed-off-by: Alan Cox <alan@redhat.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/wavelan_cs.c')
-rw-r--r-- | drivers/net/wireless/wavelan_cs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/wavelan_cs.c b/drivers/net/wireless/wavelan_cs.c index 00a3559e5aa4..b5de38a9b791 100644 --- a/drivers/net/wireless/wavelan_cs.c +++ b/drivers/net/wireless/wavelan_cs.c | |||
@@ -4496,7 +4496,7 @@ wavelan_probe(struct pcmcia_device *p_dev) | |||
4496 | p_dev->io.IOAddrLines = 3; | 4496 | p_dev->io.IOAddrLines = 3; |
4497 | 4497 | ||
4498 | /* Interrupt setup */ | 4498 | /* Interrupt setup */ |
4499 | p_dev->irq.Attributes = IRQ_TYPE_EXCLUSIVE | IRQ_HANDLE_PRESENT; | 4499 | p_dev->irq.Attributes = IRQ_TYPE_DYNAMIC_SHARING | IRQ_HANDLE_PRESENT; |
4500 | p_dev->irq.IRQInfo1 = IRQ_LEVEL_ID; | 4500 | p_dev->irq.IRQInfo1 = IRQ_LEVEL_ID; |
4501 | p_dev->irq.Handler = wavelan_interrupt; | 4501 | p_dev->irq.Handler = wavelan_interrupt; |
4502 | 4502 | ||