staging: wilc1000: remove multiple blank in host_int_remove_wep_key
authorChaehyun Lim <chaehyun.lim@gmail.com>
Mon, 5 Oct 2015 10:35:02 +0000 (19:35 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 8 Oct 2015 09:58:33 +0000 (10:58 +0100)
This patch removes multiple blank in host_int_remove_wep_key found by
checkpatch.

CHECK: Please don't use multiple blank lines
FILE: drivers/staging/wilc1000/host_interface.c:4299:
FILE: drivers/staging/wilc1000/host_interface.c:4309:
FILE: drivers/staging/wilc1000/host_interface.c:4315:

Signed-off-by: Chaehyun Lim <chaehyun.lim@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/wilc1000/host_interface.c

index 1e465522d4e87459273794f3053d8c10a02b94ae..593d41aae18a6527506a1eab3cab57f698e53ecc 100644 (file)
@@ -4193,7 +4193,6 @@ int host_int_remove_wep_key(tstrWILC_WFIDrv *wfi_drv, u8 index)
        int result = 0;
        struct host_if_msg msg;
 
-
        if (wfi_drv == NULL) {
                result = -EFAULT;
                PRINT_ER("Failed to send setup multicast config packet\n");
@@ -4203,14 +4202,11 @@ int host_int_remove_wep_key(tstrWILC_WFIDrv *wfi_drv, u8 index)
        /* prepare the Remove Wep Key Message */
        memset(&msg, 0, sizeof(struct host_if_msg));
 
-
        msg.id = HOST_IF_MSG_KEY;
        msg.body.key_info.enuKeyType = WEP;
        msg.body.key_info.u8KeyAction = REMOVEKEY;
        msg.drvHandler = wfi_drv;
 
-
-
        msg.body.key_info.
        uniHostIFkeyAttr.strHostIFwepAttr.u8Wepidx = index;