staging: wilc1000: remove unnecessary parentheses in host_int_remove_wep_key
This patch removes unnecessary parentheses in host_int_remove_wep_key found by checkpatch. CHECK: Unnecessary parentheses around wfi_drv->hSemTestKeyBlock FILE: drivers/staging/wilc1000/host_interface.c:4320: Signed-off-by: Chaehyun Lim <chaehyun.lim@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
4929affee3
commit
8a3c033262
@ -4214,7 +4214,7 @@ int host_int_remove_wep_key(tstrWILC_WFIDrv *wfi_drv, u8 index)
|
||||
result = wilc_mq_send(&gMsgQHostIF, &msg, sizeof(struct host_if_msg));
|
||||
if (result)
|
||||
PRINT_ER("Error in sending message queue : Request to remove WEP key\n");
|
||||
down(&(wfi_drv->hSemTestKeyBlock));
|
||||
down(&wfi_drv->hSemTestKeyBlock);
|
||||
|
||||
return result;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user