Commit c3aca01b authored by Ema Cuevas's avatar Ema Cuevas Committed by Greg Kroah-Hartman

staging: vt6656: removed dummy errors like extra spaces

As reported by checkpatch.
Signed-off-by: default avatarEma Cuevas <emacupk@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent cd74ea33
...@@ -516,10 +516,9 @@ BYTE CHbyGetChannelMapping(BYTE byChannelNumber) ...@@ -516,10 +516,9 @@ BYTE CHbyGetChannelMapping(BYTE byChannelNumber)
BYTE ii; BYTE ii;
BYTE byCHMapping = 0; BYTE byCHMapping = 0;
for (ii=1; ii<=CB_MAX_CHANNEL; ii++ ) { for (ii = 1; ii <= CB_MAX_CHANNEL; ii++) {
if ( sChannelTbl[ii].byChannelNumber == byChannelNumber ) { if (sChannelTbl[ii].byChannelNumber == byChannelNumber)
byCHMapping = ii; byCHMapping = ii;
}
} }
return byCHMapping; return byCHMapping;
} }
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