Commit 33c70c1b authored by Leo Kim's avatar Leo Kim Committed by Greg Kroah-Hartman

staging: wilc1000: rename bIsEnabled of struct power_mgmt_param

This patch renames bIsEnabled of struct power_mgmt_param to enabled to
avoid CamelCase naming convention.
Signed-off-by: default avatarLeo Kim <leo.kim@atmel.com>
Signed-off-by: default avatarTony Cho <tony.cho@atmel.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent e4839d39
...@@ -154,8 +154,7 @@ struct del_sta { ...@@ -154,8 +154,7 @@ struct del_sta {
}; };
struct power_mgmt_param { struct power_mgmt_param {
bool enabled;
bool bIsEnabled;
u32 u32Timeout; u32 u32Timeout;
}; };
...@@ -2763,7 +2762,7 @@ static void Handle_PowerManagement(struct host_if_drv *hif_drv, ...@@ -2763,7 +2762,7 @@ static void Handle_PowerManagement(struct host_if_drv *hif_drv,
strWID.id = (u16)WID_POWER_MANAGEMENT; strWID.id = (u16)WID_POWER_MANAGEMENT;
if (strPowerMgmtParam->bIsEnabled == true) if (strPowerMgmtParam->enabled == true)
s8PowerMode = MIN_FAST_PS; s8PowerMode = MIN_FAST_PS;
else else
s8PowerMode = NO_POWERSAVE; s8PowerMode = NO_POWERSAVE;
...@@ -4881,7 +4880,7 @@ s32 host_int_set_power_mgmt(struct host_if_drv *hif_drv, ...@@ -4881,7 +4880,7 @@ s32 host_int_set_power_mgmt(struct host_if_drv *hif_drv,
msg.id = HOST_IF_MSG_POWER_MGMT; msg.id = HOST_IF_MSG_POWER_MGMT;
msg.drv = hif_drv; msg.drv = hif_drv;
pstrPowerMgmtParam->bIsEnabled = bIsEnabled; pstrPowerMgmtParam->enabled = bIsEnabled;
pstrPowerMgmtParam->u32Timeout = u32Timeout; pstrPowerMgmtParam->u32Timeout = u32Timeout;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment