Commit d80c4b19 authored by Michael Straube's avatar Michael Straube Committed by Greg Kroah-Hartman

staging: rtl8188eu: replace tabs with spaces in odm_hwconfig.c

Replace tabs with spaces in odm_hwconfig.c where appropriate.
Signed-off-by: default avatarMichael Straube <straube.linux@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 079be547
...@@ -17,9 +17,9 @@ ...@@ -17,9 +17,9 @@
static u8 odm_QueryRxPwrPercentage(s8 AntPower) static u8 odm_QueryRxPwrPercentage(s8 AntPower)
{ {
if ((AntPower <= -100) || (AntPower >= 20)) if ((AntPower <= -100) || (AntPower >= 20))
return 0; return 0;
else if (AntPower >= 0) else if (AntPower >= 0)
return 100; return 100;
else else
return 100 + AntPower; return 100 + AntPower;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment