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

Commit 2e7933d0 authored by Glen Lee's avatar Glen Lee Committed by Greg Kroah-Hartman
Browse files

staging: wilc1000: isr_bh_routine: use wilc instead of g_linux_wlan



Use netdev private data member wilc instead of g_linux_wlan.

Signed-off-by: default avatarGlen Lee <glen.lee@atmel.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 3948362d
Loading
Loading
Loading
Loading
+7 −1
Original line number Diff line number Diff line
@@ -248,8 +248,14 @@ static irqreturn_t isr_uh_routine(int irq, void *user_data)

irqreturn_t isr_bh_routine(int irq, void *userdata)
{
	perInterface_wlan_t *nic;
	struct wilc *wilc;

	nic = netdev_priv(userdata);
	wilc = nic->wilc;

	/*While mac is closing cacncel the handling of any interrupts received*/
	if (g_linux_wlan->close) {
	if (wilc->close) {
		PRINT_ER("Driver is CLOSING: Can't handle BH interrupt\n");
		return IRQ_HANDLED;
	}