mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
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>
This commit is contained in:
parent
50b929e08e
commit
3bcd45b653
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue