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:
committed by
Greg Kroah-Hartman
parent
cd74ea33e3
commit
c3aca01be6
@@ -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;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user