staging: rtl8188eu: replace tabs with spaces in odm_hwconfig.c
authorMichael Straube <straube.linux@gmail.com>
Sun, 30 Sep 2018 19:52:57 +0000 (21:52 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 2 Oct 2018 22:20:40 +0000 (15:20 -0700)
Replace tabs with spaces in odm_hwconfig.c where appropriate.

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

index e9e5d2a..ada59a6 100644 (file)
@@ -17,9 +17,9 @@
 static u8 odm_QueryRxPwrPercentage(s8 AntPower)
 {
        if ((AntPower <= -100) || (AntPower >= 20))
-               return  0;
+               return 0;
        else if (AntPower >= 0)
-               return  100;
+               return 100;
        else
                return 100 + AntPower;
 }