Delete empty if statement blocks. The patch eliminates following
checkpatch.pl warnings:
WARNING: suspect code indent for conditional statements (8, 8)
Signed-off-by: Aaro Koskinen <aaro.koskinen@iki.fi>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
}
/* 07/05/22 */
- if (table == 0x00) {
- } else if (table == 0x01) {
- } else if (table == 0x04) {
+ if (table == 0x04) {
switch (tempdi[i].DATAPTR) {
case 0:
return &XGI_ExtPALData[tempal];
default:
break;
}
- } else if (table == 0x06) {
}
return NULL;
}