From: Michael Straube Date: Sun, 30 Sep 2018 19:52:57 +0000 (+0200) Subject: staging: rtl8188eu: replace tabs with spaces in odm_hwconfig.c X-Git-Tag: v4.20-rc1~72^2~140 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d80c4b19bcb9d5ac95969bd390f707ba48912c04;p=thirdparty%2Fkernel%2Flinux.git staging: rtl8188eu: replace tabs with spaces in odm_hwconfig.c Replace tabs with spaces in odm_hwconfig.c where appropriate. Signed-off-by: Michael Straube Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/rtl8188eu/hal/odm_hwconfig.c b/drivers/staging/rtl8188eu/hal/odm_hwconfig.c index e9e5d2a6a06c8..ada59a671da41 100644 --- a/drivers/staging/rtl8188eu/hal/odm_hwconfig.c +++ b/drivers/staging/rtl8188eu/hal/odm_hwconfig.c @@ -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; }