staging: vt6656: removed dummy errors like extra spaces

As reported by checkpatch.

Signed-off-by: Ema Cuevas <emacupk@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
Ema Cuevas 2010-09-16 15:06:38 -03:00 committed by Greg Kroah-Hartman
parent cd74ea33e3
commit c3aca01be6
1 changed files with 3 additions and 4 deletions

View File

@ -516,10 +516,9 @@ BYTE CHbyGetChannelMapping(BYTE byChannelNumber)
BYTE ii;
BYTE byCHMapping = 0;
for (ii=1; ii<=CB_MAX_CHANNEL; ii++ ) {
if ( sChannelTbl[ii].byChannelNumber == byChannelNumber ) {
byCHMapping = ii;
}
for (ii = 1; ii <= CB_MAX_CHANNEL; ii++) {
if (sChannelTbl[ii].byChannelNumber == byChannelNumber)
byCHMapping = ii;
}
return byCHMapping;
}