]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
staging: wlan-ng: remove unnecessary blank lines in p80211wep.c
authorSergio Paracuellos <sergio.paracuellos@gmail.com>
Mon, 7 Nov 2016 17:55:25 +0000 (18:55 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 10 Nov 2016 12:25:33 +0000 (13:25 +0100)
This patch removes unnecessary blank line in p80211wep.c file to
comply with the standard kernel coding style.

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

index 4de7479411922ab98419643072892f5ada5d3893..6492ffe59085f3e4eceac881e9a636a9687ce479 100644 (file)
@@ -52,8 +52,6 @@
 #include <linux/wireless.h>
 #include <linux/random.h>
 #include <linux/kernel.h>
-
-
 #include "p80211hdr.h"
 #include "p80211types.h"
 #include "p80211msg.h"
@@ -132,7 +130,6 @@ int wep_change_key(struct wlandevice *wlandev, int keynum, u8 *key, int keylen)
        if (keynum >= NUM_WEPKEYS)
                return -1;
 
-
        wlandev->wep_keylens[keynum] = keylen;
        memcpy(wlandev->wep_keys[keynum], key, keylen);
 
@@ -176,7 +173,6 @@ int wep_decrypt(struct wlandevice *wlandev, u8 *buf, u32 len, int key_override,
 
        keylen += 3;            /* add in IV bytes */
 
-
        /* set up the RC4 state */
        for (i = 0; i < 256; i++)
                s[i] = i;