From: Madhumitha Prabakaran Date: Tue, 5 Mar 2019 16:31:58 +0000 (-0600) Subject: staging: vt6655: Fix space around binary operator X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=572dbab6e3539af351270b736403309d49d77d73;p=openwrt%2Fstaging%2Fblogic.git staging: vt6655: Fix space around binary operator Fix the check as per Linux kernel style for use of spaces CHECK: spaces preferred around that '-' Signed-off-by: Madhumitha Prabakaran Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/vt6655/rf.c b/drivers/staging/vt6655/rf.c index 825b6ab5c0de..fd09b9771cf5 100644 --- a/drivers/staging/vt6655/rf.c +++ b/drivers/staging/vt6655/rf.c @@ -792,7 +792,7 @@ bool RFbSetPower( byDec = byPwr + 10; if (byDec >= priv->byMaxPwrLevel) - byDec = priv->byMaxPwrLevel-1; + byDec = priv->byMaxPwrLevel - 1; byPwr = byDec; break;