[PATCH 03/24] scsi: arm: remove leading spaces before tabs

From: Hui Tang
Date: Sat May 22 2021 - 04:41:01 EST


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: Russell King <linux@xxxxxxxxxxxxxxx>
Signed-off-by: Hui Tang <tanghui20@xxxxxxxxxx>
---
drivers/scsi/arm/fas216.c | 2 +-
drivers/scsi/arm/fas216.h | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/scsi/arm/fas216.c b/drivers/scsi/arm/fas216.c
index 2e687ce..3f4a710 100644
--- a/drivers/scsi/arm/fas216.c
+++ b/drivers/scsi/arm/fas216.c
@@ -2149,7 +2149,7 @@ static void fas216_done(FAS216_Info *info, unsigned int result)

SCpnt = info->SCpnt;
info->SCpnt = NULL;
- info->scsi.phase = PHASE_IDLE;
+ info->scsi.phase = PHASE_IDLE;

if (info->scsi.aborting) {
fas216_log(info, 0, "uncaught abort - returning DID_ABORT");
diff --git a/drivers/scsi/arm/fas216.h b/drivers/scsi/arm/fas216.h
index 847413c..93ae0ad 100644
--- a/drivers/scsi/arm/fas216.h
+++ b/drivers/scsi/arm/fas216.h
@@ -279,7 +279,7 @@ typedef struct {
/* queue handling */
struct {
Queue_t issue; /* issue queue */
- Queue_t disconnected; /* disconnected command queue */
+ Queue_t disconnected; /* disconnected command queue */
} queues;

/* per-device info */
--
2.8.1