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 <straube.linux@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Michael Straube 2018-09-30 21:52:57 +02:00 committed by Greg Kroah-Hartman
parent 079be54766
commit d80c4b19bc

View 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;
}