Messages in this thread Patch in this message |  | | From | Hui Tang <> | Subject | [PATCH 09/24] scsi: zalon: remove leading spaces before tabs | Date | Sat, 22 May 2021 16:37:13 +0800 |
| |
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@huawei.com> --- 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
|  |