diff options
author | Larry Finger <Larry.Finger@lwfinger.net> | 2009-07-15 22:49:27 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-07-24 15:05:19 -0400 |
commit | ea9edaf6bc0e3f3a7bd167d9ba369276a30c9953 (patch) | |
tree | a2851e3ea23f8ccd27b11e849e5e3e474edfcff6 /drivers/net/wireless/hostap | |
parent | e91d83346ad9b30f44469c92b982206dcd7dcaf0 (diff) | |
download | kernel-crypto-ea9edaf6bc0e3f3a7bd167d9ba369276a30c9953.tar.gz kernel-crypto-ea9edaf6bc0e3f3a7bd167d9ba369276a30c9953.tar.xz kernel-crypto-ea9edaf6bc0e3f3a7bd167d9ba369276a30c9953.zip |
hostap_cs: Enable shared interrupts
The hostap_cs driver is programmed for exclusive rather that shared
interrupts.
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
Reported-and-Tested-by: Jack Schneider <puck@dp-indexing.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/hostap')
-rw-r--r-- | drivers/net/wireless/hostap/hostap_cs.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/net/wireless/hostap/hostap_cs.c b/drivers/net/wireless/hostap/hostap_cs.c index 63374027735..ad8eab4a639 100644 --- a/drivers/net/wireless/hostap/hostap_cs.c +++ b/drivers/net/wireless/hostap/hostap_cs.c @@ -666,7 +666,8 @@ static int prism2_config(struct pcmcia_device *link) * irq structure is initialized. */ if (link->conf.Attributes & CONF_ENABLE_IRQ) { - link->irq.Attributes = IRQ_TYPE_EXCLUSIVE | IRQ_HANDLE_PRESENT; + link->irq.Attributes = IRQ_TYPE_DYNAMIC_SHARING | + IRQ_HANDLE_PRESENT; link->irq.IRQInfo1 = IRQ_LEVEL_ID; link->irq.Handler = prism2_interrupt; link->irq.Instance = dev; |