staging: ks7010: remove nosense #if 1 directive
authorSergio Paracuellos <sergio.paracuellos@gmail.com>
Fri, 6 Apr 2018 12:37:45 +0000 (14:37 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 23 Apr 2018 12:27:35 +0000 (14:27 +0200)
This commit removes #if 1 directive from code to
improve readability. It is always true, so it makes
no sense to have it there.

Signed-off-by: Sergio Paracuellos <sergio.paracuellos@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/ks7010/ks_wlan_net.c

index 138d19a..eaee49d 100644 (file)
@@ -966,7 +966,6 @@ static int ks_wlan_get_encode(struct net_device *dev,
                dwrq->length = priv->reg.wep_key[index].size;
        if (dwrq->length > 16)
                dwrq->length = 0;
-#if 1  /* IW_ENCODE_NOKEY; */
        if (dwrq->length) {
                if ((index >= 0) && (index < 4))
                        memcpy(extra, priv->reg.wep_key[index].val,
@@ -974,7 +973,7 @@ static int ks_wlan_get_encode(struct net_device *dev,
        } else {
                memcpy(extra, zeros, dwrq->length);
        }
-#endif
+
        return 0;
 }