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 <madhumithabiw@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Madhumitha Prabakaran 2019-03-05 10:31:58 -06:00 committed by Greg Kroah-Hartman
parent 084a8e5460
commit 572dbab6e3

View file

@ -792,7 +792,7 @@ bool RFbSetPower(
byDec = byPwr + 10;
if (byDec >= priv->byMaxPwrLevel)
byDec = priv->byMaxPwrLevel-1;
byDec = priv->byMaxPwrLevel - 1;
byPwr = byDec;
break;