Commit 572dbab6 authored by Madhumitha Prabakaran's avatar Madhumitha Prabakaran Committed by Greg Kroah-Hartman

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: default avatarMadhumitha Prabakaran <madhumithabiw@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 084a8e54
...@@ -792,7 +792,7 @@ bool RFbSetPower( ...@@ -792,7 +792,7 @@ bool RFbSetPower(
byDec = byPwr + 10; byDec = byPwr + 10;
if (byDec >= priv->byMaxPwrLevel) if (byDec >= priv->byMaxPwrLevel)
byDec = priv->byMaxPwrLevel-1; byDec = priv->byMaxPwrLevel - 1;
byPwr = byDec; byPwr = byDec;
break; break;
......
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