There are a few leading spaces before tabs and remove it by running the following commard: $ find . -name '*.[ch]' | xargs sed -r -i 's/^[ ]+\t/\t/' Cc: Michael Reed <mdr@xxxxxxx> Signed-off-by: Hui Tang <tanghui20@xxxxxxxxxx> --- drivers/scsi/qla1280.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/scsi/qla1280.c b/drivers/scsi/qla1280.c index 928da90..54cbfda 100644 --- a/drivers/scsi/qla1280.c +++ b/drivers/scsi/qla1280.c @@ -38,7 +38,7 @@ - Initialize completion queue to avoid OOPS on probe - Handle interrupts during mailbox testing Rev 3.24 November 17, 2003, Christoph Hellwig - - use struct list_head for completion queue + - use struct list_head for completion queue - avoid old Scsi_FOO typedefs - cleanup 2.4 compat glue a bit - use <scsi/scsi_*.h> headers on 2.6 instead of "scsi.h" @@ -4058,7 +4058,7 @@ qla1280_setup(char *s) val = 0x10000; ptr += 3; } else if (!strcmp(ptr, "no")) { - val = 0; + val = 0; ptr += 2; } else val = simple_strtoul(ptr, &ptr, 0); -- 2.8.1