Message ID | 1621672648-39955-22-git-send-email-tanghui20@huawei.com |
---|---|
State | New |
Headers | show |
Series | scsi: remove leading spaces before tabs | expand |
diff --git a/drivers/scsi/ips.c b/drivers/scsi/ips.c index bc33d54..07e0ceb 100644 --- a/drivers/scsi/ips.c +++ b/drivers/scsi/ips.c @@ -3314,7 +3314,7 @@ ips_map_status(ips_ha_t * ha, ips_scb_t * scb, ips_stat_t * sp) if (scb->scsi_cmd->cmnd[0] == INQUIRY) { ips_scmd_buf_read(scb->scsi_cmd, &inquiryData, sizeof (inquiryData)); - if ((inquiryData.DeviceType & 0x1f) == TYPE_DISK) { + if ((inquiryData.DeviceType & 0x1f) == TYPE_DISK) { errcode = DID_TIME_OUT; break; } @@ -4558,7 +4558,7 @@ ips_flush_and_reset(ips_ha_t *ha) { ips_scb_t *scb; int ret; - int time; + int time; int done; dma_addr_t command_dma;
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/ips.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)