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 <glen.lee@atmel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Glen Lee 2015-10-27 18:27:38 +09:00 committed by Greg Kroah-Hartman
parent 3948362d56
commit 2e7933d0e7
1 changed files with 7 additions and 1 deletions

View File

@ -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;
}