Return-path: Received: from eusmtp01.atmel.com ([212.144.249.242]:51693 "EHLO eusmtp01.atmel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750879AbbJWF0K (ORCPT ); Fri, 23 Oct 2015 01:26:10 -0400 From: Glen Lee To: CC: , , , , , , , , Subject: [PATCH 03/28] staging: wilc1000: isr_bh_routine: use wilc instead of g_linux_wlan Date: Fri, 23 Oct 2015 14:28:19 +0900 Message-ID: <1445578124-31486-3-git-send-email-glen.lee@atmel.com> (sfid-20151023_072613_984894_2538BDBE) In-Reply-To: <1445578124-31486-1-git-send-email-glen.lee@atmel.com> References: <1445578124-31486-1-git-send-email-glen.lee@atmel.com> MIME-Version: 1.0 Content-Type: text/plain Sender: linux-wireless-owner@vger.kernel.org List-ID: Use netdev private member wilc instead of g_linux_wlan. Signed-off-by: Glen Lee --- drivers/staging/wilc1000/linux_wlan.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/drivers/staging/wilc1000/linux_wlan.c b/drivers/staging/wilc1000/linux_wlan.c index 7b0614d..e31760e 100644 --- a/drivers/staging/wilc1000/linux_wlan.c +++ b/drivers/staging/wilc1000/linux_wlan.c @@ -247,8 +247,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 *wl; + + nic = netdev_priv(userdata); + wl = nic->wilc; + /*While mac is closing cacncel the handling of any interrupts received*/ - if (g_linux_wlan->close) { + if (wl->close) { PRINT_ER("Driver is CLOSING: Can't handle BH interrupt\n"); return IRQ_HANDLED; } -- 1.9.1