This patch renames bIsEnabled of struct power_mgmt_param to enabled to
avoid CamelCase naming convention.
Signed-off-by: Leo Kim <leo.kim@atmel.com>
Signed-off-by: Tony Cho <tony.cho@atmel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
};
struct power_mgmt_param {
-
- bool bIsEnabled;
+ bool enabled;
u32 u32Timeout;
};
strWID.id = (u16)WID_POWER_MANAGEMENT;
- if (strPowerMgmtParam->bIsEnabled == true)
+ if (strPowerMgmtParam->enabled == true)
s8PowerMode = MIN_FAST_PS;
else
s8PowerMode = NO_POWERSAVE;
msg.id = HOST_IF_MSG_POWER_MGMT;
msg.drv = hif_drv;
- pstrPowerMgmtParam->bIsEnabled = bIsEnabled;
+ pstrPowerMgmtParam->enabled = bIsEnabled;
pstrPowerMgmtParam->u32Timeout = u32Timeout;