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/' Signed-off-by: Hui Tang <tanghui20@xxxxxxxxxx> --- drivers/scsi/zalon.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/scsi/zalon.c b/drivers/scsi/zalon.c index 7eac76c..3fef336 100644 --- a/drivers/scsi/zalon.c +++ b/drivers/scsi/zalon.c @@ -74,7 +74,7 @@ lasi_scsi_clock(void * hpa, int defaultclock) } printk(KERN_DEBUG "%s: SCSI clock %d\n", __func__, clock); - return clock; + return clock; } #endif -- 2.8.1