Commit 3b840e49 authored by Leo Kim's avatar Leo Kim Committed by Greg Kroah-Hartman

staging: wilc1000: remove return type of Handle_wait_msg_q_empty

This patch changes return type of Handle_wait_msg_q_empty from s32 with void
because return value is not used.
Signed-off-by: default avatarLeo Kim <leo.kim@atmel.com>
Signed-off-by: default avatarGlen Lee <glen.lee@atmel.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 02ae2bdf
...@@ -813,11 +813,10 @@ static s32 Handle_CfgParam(struct host_if_drv *hif_drv, ...@@ -813,11 +813,10 @@ static s32 Handle_CfgParam(struct host_if_drv *hif_drv,
return result; return result;
} }
static s32 Handle_wait_msg_q_empty(void) static void Handle_wait_msg_q_empty(void)
{ {
g_wilc_initialized = 0; g_wilc_initialized = 0;
up(&hif_sema_wait_response); up(&hif_sema_wait_response);
return 0;
} }
static s32 Handle_Scan(struct host_if_drv *hif_drv, static s32 Handle_Scan(struct host_if_drv *hif_drv,
......
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