staging:rtl8192u: Add missing blank lines - Style
authorJohn Whitmore <johnfwhitmore@gmail.com>
Sun, 7 Oct 2018 21:40:22 +0000 (22:40 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 9 Oct 2018 13:26:04 +0000 (15:26 +0200)
Add missing blank lines after declarations. This clears the resulting
checkpatch issue.

This is a simple coding style change which should not impact runtime
code execution.

Signed-off-by: John Whitmore <johnfwhitmore@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8192u/ieee80211/ieee80211_module.c

index 0385496..a9c1d8e 100644 (file)
@@ -204,6 +204,7 @@ void free_ieee80211(struct net_device *dev)
 
        for (i = 0; i < WEP_KEYS; i++) {
                struct ieee80211_crypt_data *crypt = ieee->crypt[i];
+
                if (crypt) {
                        if (crypt->ops)
                                crypt->ops->deinit(crypt->priv);
@@ -253,6 +254,7 @@ static ssize_t write_debug_level(struct file *file, const char __user *buffer,
 {
        unsigned long val;
        int err = kstrtoul_from_user(buffer, count, 0, &val);
+
        if (err)
                return err;
        ieee80211_debug_level = val;