Browse Source

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>
Chaehyun Lim 10 years ago
parent
commit
8a3c033262
1 changed files with 1 additions and 1 deletions
  1. 1 1
      drivers/staging/wilc1000/host_interface.c

+ 1 - 1
drivers/staging/wilc1000/host_interface.c

@@ -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;
 }