提交 6d04d7a0 编写于 作者: L Leo Kim 提交者: Greg Kroah-Hartman

staging: wilc1000: wilc_deinit(): fixes inconsistent returns

This patch fixes the warning reported by smatch.
 - wilc_deinit() warn: inconsistent returns 'sem:&hif_drv->sem_cfg_values'

This semaphore protect a cfg_values variable but cfg_values variables was not
used here. So, just remove this line.
Signed-off-by: NLeo Kim <leo.kim@atmel.com>
Signed-off-by: NGlen Lee <glen.lee@atmel.com>
Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
上级 cb3b05c3
...@@ -3940,8 +3940,6 @@ s32 wilc_deinit(struct host_if_drv *hif_drv) ...@@ -3940,8 +3940,6 @@ s32 wilc_deinit(struct host_if_drv *hif_drv)
wilc_mq_destroy(&hif_msg_q); wilc_mq_destroy(&hif_msg_q);
} }
down(&hif_drv->sem_cfg_values);
ret = remove_handler_in_list(hif_drv); ret = remove_handler_in_list(hif_drv);
if (ret) if (ret)
result = -ENOENT; result = -ENOENT;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册