mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-06 11:26:22 -04:00
staging: wilc1000: rename genuChipPSstate variable
This patch rename genuChipPSstate variable to chip_ps_state to avoid CamelCase naming convention. Signed-off-by: Leo Kim <leo.kim@atmel.com> Signed-off-by: Glen Lee <glen.lee@atmel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
8739eeba4b
commit
b7d1e18c27
@@ -55,13 +55,13 @@ static void wilc_debug(u32 flag, char *fmt, ...)
|
||||
}
|
||||
}
|
||||
|
||||
static CHIP_PS_STATE_T genuChipPSstate = CHIP_WAKEDUP;
|
||||
static CHIP_PS_STATE_T chip_ps_state = CHIP_WAKEDUP;
|
||||
|
||||
static inline void acquire_bus(BUS_ACQUIRE_T acquire)
|
||||
{
|
||||
mutex_lock(&g_linux_wlan->hif_cs);
|
||||
#ifndef WILC_OPTIMIZE_SLEEP_INT
|
||||
if (genuChipPSstate != CHIP_WAKEDUP)
|
||||
if (chip_ps_state != CHIP_WAKEDUP)
|
||||
#endif
|
||||
{
|
||||
if (acquire == ACQUIRE_AND_WAKEUP)
|
||||
@@ -606,7 +606,7 @@ static inline void chip_wakeup(void)
|
||||
} while ((clk_status_reg & 0x1) == 0);
|
||||
}
|
||||
|
||||
if (genuChipPSstate == CHIP_SLEEPING_MANUAL) {
|
||||
if (chip_ps_state == CHIP_SLEEPING_MANUAL) {
|
||||
g_wlan.hif_func.hif_read_reg(0x1C0C, ®);
|
||||
reg &= ~BIT(0);
|
||||
g_wlan.hif_func.hif_write_reg(0x1C0C, reg);
|
||||
@@ -623,7 +623,7 @@ static inline void chip_wakeup(void)
|
||||
g_wlan.hif_func.hif_write_reg(0x1e9c, val32);
|
||||
}
|
||||
}
|
||||
genuChipPSstate = CHIP_WAKEDUP;
|
||||
chip_ps_state = CHIP_WAKEDUP;
|
||||
}
|
||||
#else
|
||||
static inline void chip_wakeup(void)
|
||||
@@ -653,7 +653,7 @@ static inline void chip_wakeup(void)
|
||||
|
||||
} while (wilc_get_chipid(true) == 0);
|
||||
|
||||
if (genuChipPSstate == CHIP_SLEEPING_MANUAL) {
|
||||
if (chip_ps_state == CHIP_SLEEPING_MANUAL) {
|
||||
g_wlan.hif_func.hif_read_reg(0x1C0C, ®);
|
||||
reg &= ~BIT(0);
|
||||
g_wlan.hif_func.hif_write_reg(0x1C0C, reg);
|
||||
@@ -670,12 +670,12 @@ static inline void chip_wakeup(void)
|
||||
g_wlan.hif_func.hif_write_reg(0x1e9c, val32);
|
||||
}
|
||||
}
|
||||
genuChipPSstate = CHIP_WAKEDUP;
|
||||
chip_ps_state = CHIP_WAKEDUP;
|
||||
}
|
||||
#endif
|
||||
void chip_sleep_manually(u32 u32SleepTime)
|
||||
{
|
||||
if (genuChipPSstate != CHIP_WAKEDUP)
|
||||
if (chip_ps_state != CHIP_WAKEDUP)
|
||||
return;
|
||||
acquire_bus(ACQUIRE_ONLY);
|
||||
|
||||
@@ -684,7 +684,7 @@ void chip_sleep_manually(u32 u32SleepTime)
|
||||
#endif
|
||||
g_wlan.hif_func.hif_write_reg(0x10a8, 1);
|
||||
|
||||
genuChipPSstate = CHIP_SLEEPING_MANUAL;
|
||||
chip_ps_state = CHIP_SLEEPING_MANUAL;
|
||||
release_bus(RELEASE_ONLY);
|
||||
}
|
||||
|
||||
@@ -1069,7 +1069,7 @@ static void wilc_sleeptimer_isr_ext(u32 int_stats1)
|
||||
{
|
||||
g_wlan.hif_func.hif_clear_int_ext(SLEEP_INT_CLR);
|
||||
#ifndef WILC_OPTIMIZE_SLEEP_INT
|
||||
genuChipPSstate = CHIP_SLEEPING_AUTO;
|
||||
chip_ps_state = CHIP_SLEEPING_AUTO;
|
||||
#endif
|
||||
}
|
||||
|
||||
@@ -1158,7 +1158,7 @@ void wilc_handle_isr(void *wilc)
|
||||
if (int_status & DATA_INT_EXT) {
|
||||
wilc_wlan_handle_isr_ext(wilc, int_status);
|
||||
#ifndef WILC_OPTIMIZE_SLEEP_INT
|
||||
genuChipPSstate = CHIP_WAKEDUP;
|
||||
chip_ps_state = CHIP_WAKEDUP;
|
||||
#endif
|
||||
}
|
||||
if (int_status & SLEEP_INT_EXT)
|
||||
|
||||
Reference in New Issue
Block a user