From: Payal Kshirsagar <payal.s.kshirsagar.98@gmail.com> Date: Sat, 30 Mar 2019 05:12:43 +0000 (+0530) Subject: staging: rtl8723bs: hal: odm_HWConfig.c: Remove unnecessary parentheses X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=2beb8a8189a87969feda9ce7aeef0ab45c881ab8;p=linux.git staging: rtl8723bs: hal: odm_HWConfig.c: Remove unnecessary parentheses Challenge suggested by coccinelle. Remove unnecessary parentheses around an expression, add spaces around operator and remove trailing space. Signed-off-by: Payal Kshirsagar <payal.s.kshirsagar.98@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> --- diff --git a/drivers/staging/rtl8723bs/hal/odm_HWConfig.c b/drivers/staging/rtl8723bs/hal/odm_HWConfig.c index ee2c293e4f597..d802a1fde58fd 100644 --- a/drivers/staging/rtl8723bs/hal/odm_HWConfig.c +++ b/drivers/staging/rtl8723bs/hal/odm_HWConfig.c @@ -19,7 +19,7 @@ static u8 odm_QueryRxPwrPercentage(s8 AntPower) else if (AntPower >= 0) return 100; else - return (100+AntPower); + return 100 + AntPower; }