Commit 6d6c9bbb authored by Chaehyun Lim's avatar Chaehyun Lim Committed by Greg Kroah-Hartman

staging: wilc1000: rename s32Error in host_int_wait_msg_queue_idle

This patch replaces s32Error with result to avoid camelcase.
Signed-off-by: default avatarChaehyun Lim <chaehyun.lim@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 244efb1f
...@@ -5344,7 +5344,7 @@ int host_int_set_mac_chnl_num(tstrWILC_WFIDrv *wfi_drv, u8 channel) ...@@ -5344,7 +5344,7 @@ int host_int_set_mac_chnl_num(tstrWILC_WFIDrv *wfi_drv, u8 channel)
int host_int_wait_msg_queue_idle(void) int host_int_wait_msg_queue_idle(void)
{ {
int s32Error = 0; int result = 0;
struct host_if_msg msg; struct host_if_msg msg;
...@@ -5352,16 +5352,16 @@ int host_int_wait_msg_queue_idle(void) ...@@ -5352,16 +5352,16 @@ int host_int_wait_msg_queue_idle(void)
memset(&msg, 0, sizeof(struct host_if_msg)); memset(&msg, 0, sizeof(struct host_if_msg));
msg.id = HOST_IF_MSG_Q_IDLE; msg.id = HOST_IF_MSG_Q_IDLE;
s32Error = wilc_mq_send(&gMsgQHostIF, &msg, sizeof(struct host_if_msg)); result = wilc_mq_send(&gMsgQHostIF, &msg, sizeof(struct host_if_msg));
if (s32Error) { if (result) {
PRINT_ER("wilc mq send fail\n"); PRINT_ER("wilc mq send fail\n");
s32Error = -EINVAL; result = -EINVAL;
} }
/* wait untill MSG Q is empty */ /* wait untill MSG Q is empty */
down(&hWaitResponse); down(&hWaitResponse);
return s32Error; return result;
} }
......
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