Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ea9edaf6 authored by Larry Finger's avatar Larry Finger Committed by John W. Linville
Browse files

hostap_cs: Enable shared interrupts



The hostap_cs driver is programmed for exclusive rather that shared
interrupts.

Signed-off-by: default avatarLarry Finger <Larry.Finger@lwfinger.net>
Reported-and-Tested-by: default avatarJack Schneider <puck@dp-indexing.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent e91d8334
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -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;