Messages in this thread Patch in this message |  | | From | Hui Tang <> | Subject | [PATCH 01/24] scsi: aacraid: remove leading spaces before tabs | Date | Sat, 22 May 2021 16:37:05 +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/'
Cc: Adaptec OEM Raid Solutions <aacraid@microsemi.com> Signed-off-by: Hui Tang <tanghui20@huawei.com> --- drivers/scsi/aacraid/sa.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/scsi/aacraid/sa.c b/drivers/scsi/aacraid/sa.c index c9a1dad..8cf66a36 100644 --- a/drivers/scsi/aacraid/sa.c +++ b/drivers/scsi/aacraid/sa.c @@ -154,7 +154,7 @@ static int sa_sync_cmd(struct aac_dev *dev, u32 command, u32 *ret, u32 *r1, u32 *r2, u32 *r3, u32 *r4) { unsigned long start; - int ok; + int ok; /* * Write the Command into Mailbox 0 */ -- 2.8.1
|  |