The hostap_cs driver is programmed for exclusive rather that shared interrupts. Signed-off-by: Larry Finger <Larry.Finger@xxxxxxxxxxxx> Reported-and-Tested-by: Jack Schneider <puck@xxxxxxxxxxxxxxx> --- John, This is an original bug. It doesn't make much difference which kernel first gets the fix. Larry --- Index: wireless-testing/drivers/net/wireless/hostap/hostap_cs.c =================================================================== --- wireless-testing.orig/drivers/net/wireless/hostap/hostap_cs.c +++ wireless-testing/drivers/net/wireless/hostap/hostap_cs.c @@ -666,7 +666,8 @@ static int prism2_config(struct pcmcia_d * 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; -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html