Commit 937918ff authored by Leo Kim's avatar Leo Kim Committed by Greg Kroah-Hartman

staging: wilc1000: rename u32Timeout of struct power_mgmt_param

This patch renames u32Timeout of struct power_mgmt_param to timeout 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 33c70c1b
......@@ -155,7 +155,7 @@ struct del_sta {
struct power_mgmt_param {
bool enabled;
u32 u32Timeout;
u32 timeout;
};
struct set_ip_addr {
......@@ -4881,8 +4881,7 @@ s32 host_int_set_power_mgmt(struct host_if_drv *hif_drv,
msg.drv = hif_drv;
pstrPowerMgmtParam->enabled = bIsEnabled;
pstrPowerMgmtParam->u32Timeout = u32Timeout;
pstrPowerMgmtParam->timeout = u32Timeout;
s32Error = wilc_mq_send(&gMsgQHostIF, &msg, sizeof(struct host_if_msg));
if (s32Error)
......
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