From: Glen Lee Date: Tue, 27 Oct 2015 09:27:38 +0000 (+0900) Subject: staging: wilc1000: isr_bh_routine: use wilc instead of g_linux_wlan X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=2e7933d0e79ab84f37389893ce66c35567d9bf6e;p=linux-beck.git 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: Glen Lee Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/wilc1000/linux_wlan.c b/drivers/staging/wilc1000/linux_wlan.c index 324cc5720bb1..7d0d7229a231 100644 --- a/drivers/staging/wilc1000/linux_wlan.c +++ b/drivers/staging/wilc1000/linux_wlan.c @@ -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; }