Staging: rtl8188eu: fixed newlines after declarations
authorDave Perez <dave@daveperez.com>
Thu, 30 Jul 2015 01:50:30 +0000 (21:50 -0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 31 Jul 2015 23:05:40 +0000 (16:05 -0700)
This is a patch to the rtw_debug.c file that fixes styling errors relating to
new lines after variable declarations.

Signed-off-by: Dave Perez <dave@daveperez.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8188eu/core/rtw_debug.c

index bc3fe10ff247014c32ad4445a141173ee8b28fd0..12beab046a4ac3f8a8753c1184351d212f89a115 100644 (file)
@@ -219,6 +219,7 @@ int proc_get_ht_option(char *page, char **start,
        struct mlme_priv *pmlmepriv = &(padapter->mlmepriv);
 
        int len = 0;
+
        len += snprintf(page + len, count - len, "ht_option=%d\n", pmlmepriv->htpriv.ht_option);
        *eof = 1;
        return len;
@@ -588,6 +589,7 @@ int proc_set_rx_signal(struct file *file, const char __user *buffer,
 
        if (buffer && !copy_from_user(tmp, buffer, sizeof(tmp))) {
                int num = sscanf(tmp, "%u %u", &is_signal_dbg, &signal_strength);
+
                is_signal_dbg = is_signal_dbg == 0 ? 0 : 1;
                if (is_signal_dbg && num != 2)
                        return count;