diff options
author | Glen Lee <glen.lee@atmel.com> | 2015-10-27 18:27:41 +0900 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-10-29 08:08:47 +0900 |
commit | 3bcd45b653e2d9c9bd04f245a14d26af895cd63a (patch) | |
tree | 9542a12ab00ca8212ebbbf817988fd8b5f9a5df6 | |
parent | 50b929e08ee09ceb6ffa8416af818bed358718f6 (diff) |
staging: wilc1000: wilc_wlan_handle_isr_ext: add argument struct wilc
This patch adds argument struct wilc and pass wilc to the function.
Signed-off-by: Glen Lee <glen.lee@atmel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/staging/wilc1000/wilc_wlan.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/wilc1000/wilc_wlan.c b/drivers/staging/wilc1000/wilc_wlan.c index be6f631f880e..5141fe09e976 100644 --- a/drivers/staging/wilc1000/wilc_wlan.c +++ b/drivers/staging/wilc1000/wilc_wlan.c @@ -1260,7 +1260,7 @@ static void wilc_sleeptimer_isr_ext(u32 int_stats1) #endif } -static void wilc_wlan_handle_isr_ext(u32 int_status) +static void wilc_wlan_handle_isr_ext(struct wilc *wilc, u32 int_status) { wilc_wlan_dev_t *p = &g_wlan; #ifdef MEMORY_STATIC @@ -1364,7 +1364,7 @@ void wilc_handle_isr(void *wilc) wilc_pllupdate_isr_ext(int_status); if (int_status & DATA_INT_EXT) { - wilc_wlan_handle_isr_ext(int_status); + wilc_wlan_handle_isr_ext(wilc, int_status); #ifndef WILC_OPTIMIZE_SLEEP_INT /* Chip is up and talking*/ genuChipPSstate = CHIP_WAKEDUP; |