]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
staging: rtl8188eu: replace tabs with spaces
authorMichael Straube <straube.linux@gmail.com>
Sun, 8 Jul 2018 11:58:12 +0000 (13:58 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 8 Jul 2018 15:42:05 +0000 (17:42 +0200)
Replace tabs with spaces in some function definitions and variable
declarations.

Signed-off-by: Michael Straube <straube.linux@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8188eu/core/rtw_ieee80211.c

index e6dff44e00fd54d13efebfa75865aa12dd0fb95b..fed33d9acf603fc214ab13074f37674af9491ba3 100644 (file)
@@ -73,9 +73,9 @@ int rtw_get_bit_value_from_ieee_value(u8 val)
        return 0;
 }
 
-uint   rtw_is_cckrates_included(u8 *rate)
+uint rtw_is_cckrates_included(u8 *rate)
 {
-       u32     i = 0;
+       u32 i = 0;
 
        while (rate[i] != 0) {
                if  ((((rate[i]) & 0x7f) == 2) || (((rate[i]) & 0x7f) == 4) ||
@@ -86,7 +86,7 @@ uint  rtw_is_cckrates_included(u8 *rate)
        return false;
 }
 
-uint   rtw_is_cckratesonly_included(u8 *rate)
+uint rtw_is_cckratesonly_included(u8 *rate)
 {
        u32 i = 0;
 
@@ -212,9 +212,9 @@ uint rtw_get_rateset_len(u8 *rateset)
 
 int rtw_generate_ie(struct registry_priv *pregistrypriv)
 {
-       u8      wireless_mode;
-       int     rateLen;
-       uint    sz = 0;
+       u8 wireless_mode;
+       int rateLen;
+       uint sz = 0;
        struct wlan_bssid_ex *pdev_network = &pregistrypriv->dev_network;
        u8 *ie = pdev_network->ies;