Messages in this thread Patch in this message |  | | From | Hui Tang <> | Subject | [PATCH 22/24] scsi: dpt_i2o: remove leading spaces before tabs | Date | Sat, 22 May 2021 16:37:26 +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/dpt_i2o.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/scsi/dpt_i2o.c b/drivers/scsi/dpt_i2o.c index a18a4a0..6861fe3 100644 --- a/drivers/scsi/dpt_i2o.c +++ b/drivers/scsi/dpt_i2o.c @@ -3348,7 +3348,7 @@ static int adpt_i2o_issue_params(int cmd, adpt_hba* pHba, int tid, if ((wait_status = adpt_i2o_post_wait(pHba, msg, sizeof(msg), 20))) { printk("adpt_i2o_issue_params: post_wait failed (%p)\n", resblk_va); - return wait_status; /* -DetailedStatus */ + return wait_status; /* -DetailedStatus */ } if (res[1]&0x00FF0000) { /* BlockStatus != SUCCESS */ @@ -3375,7 +3375,7 @@ static s32 adpt_i2o_quiesce_hba(adpt_hba* pHba) /* SysQuiesce discarded if IOP not in READY or OPERATIONAL state */ if((pHba->status_block->iop_state != ADAPTER_STATE_READY) && - (pHba->status_block->iop_state != ADAPTER_STATE_OPERATIONAL)){ + (pHba->status_block->iop_state != ADAPTER_STATE_OPERATIONAL)){ return 0; } -- 2.8.1
|  |