]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
Staging: rtl8187se: Fix indentation errors
authorHimangi Saraogi <himangi774@gmail.com>
Sun, 10 Nov 2013 08:54:44 +0000 (14:24 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 10 Nov 2013 17:13:22 +0000 (09:13 -0800)
This patch fixes the checkpatch.pl warnings "code indent should use
tabs where possible" in ieee80211/ieee80211_softmac.c.
Also unnecessary blanks lines are removed.

Signed-off-by: Himangi Saraogi <himangi774@gmail.com>
Reviewed-by: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8187se/ieee80211/ieee80211_softmac.c

index a5d0e54100cab117cd9f3485ec8fd4a6ea93c14b..c281c6728e6319d032f3ab83fd6e63333c6da980 100644 (file)
@@ -132,17 +132,15 @@ void ieee80211_WMM_Info(struct ieee80211_device *ieee, u8 **tag_p)
 void ieee80211_TURBO_Info(struct ieee80211_device *ieee, u8 **tag_p)
 {
        u8 *tag = *tag_p;
-
-        *tag++ = MFIE_TYPE_GENERIC; //0
-        *tag++ = 7;
-        *tag++ = 0x00;
-        *tag++ = 0xe0;
-        *tag++ = 0x4c;
-        *tag++ = 0x01;//5
-        *tag++ = 0x02;
-        *tag++ = 0x11;
+       *tag++ = MFIE_TYPE_GENERIC; //0
+       *tag++ = 7;
+       *tag++ = 0x00;
+       *tag++ = 0xe0;
+       *tag++ = 0x4c;
+       *tag++ = 0x01;//5
+       *tag++ = 0x02;
+       *tag++ = 0x11;
        *tag++ = 0x00;
-
        *tag_p = tag;
        printk(KERN_ALERT "This is enable turbo mode IE process\n");
 }