linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Hui Tang <tanghui20@huawei.com>
To: <jejb@linux.ibm.com>, <martin.petersen@oracle.com>
Cc: <linux-scsi@vger.kernel.org>, <linux-kernel@vger.kernel.org>,
	<tanghui20@huawei.com>,
	Adaptec OEM Raid Solutions <aacraid@microsemi.com>
Subject: [PATCH 22/24] scsi: dpt_i2o: remove leading spaces before tabs
Date: Sat, 22 May 2021 16:37:26 +0800	[thread overview]
Message-ID: <1621672648-39955-23-git-send-email-tanghui20@huawei.com> (raw)
In-Reply-To: <1621672648-39955-1-git-send-email-tanghui20@huawei.com>

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


  parent reply	other threads:[~2021-05-22  8:42 UTC|newest]

Thread overview: 26+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-05-22  8:37 [PATCH 00/24] scsi: remove leading spaces before tabs Hui Tang
2021-05-22  8:37 ` [PATCH 01/24] scsi: aacraid: " Hui Tang
2021-05-22  8:37 ` [PATCH 02/24] scsi: aic7xxx: " Hui Tang
2021-05-22  8:37 ` [PATCH 03/24] scsi: arm: " Hui Tang
2021-05-22  8:37 ` [PATCH 04/24] scsi: sym53c8xx: " Hui Tang
2021-05-22  8:37 ` [PATCH 05/24] scsi: qla2xxx: " Hui Tang
2021-05-22  8:37 ` [PATCH 06/24] scsi: arcmsr: " Hui Tang
2021-05-22  8:37 ` [PATCH 07/24] scsi: ibmvfc: " Hui Tang
2021-05-22  8:37 ` [PATCH 08/24] scsi: megaraid: " Hui Tang
2021-05-22  8:37 ` [PATCH 09/24] scsi: zalon: " Hui Tang
2021-05-22  8:37 ` [PATCH 10/24] scsi: wd33c93: " Hui Tang
2021-05-22  8:37 ` [PATCH 11/24] scsi: sun3_scsi: " Hui Tang
2021-05-22 22:37   ` Finn Thain
2021-05-22  8:37 ` [PATCH 12/24] scsi: scsi_transport_spi: " Hui Tang
2021-05-22  8:37 ` [PATCH 13/24] scsi: scsi_transport_fc: " Hui Tang
2021-05-22  8:37 ` [PATCH 14/24] scsi: proc: " Hui Tang
2021-05-22  8:37 ` [PATCH 15/24] scsi: qlogicfas408: " Hui Tang
2021-05-22  8:37 ` [PATCH 16/24] scsi: qla1280: remove leading space " Hui Tang
2021-05-22  8:37 ` [PATCH 17/24] scsi: pcmcia: remove leading spaces " Hui Tang
2021-05-22  8:37 ` [PATCH 18/24] scsi: ncr53c8xx: " Hui Tang
2021-05-22  8:37 ` [PATCH 19/24] scsi: mesh: " Hui Tang
2021-05-22  8:37 ` [PATCH 20/24] scsi: mac53c94: " Hui Tang
2021-05-22  8:37 ` [PATCH 21/24] scsi: ips: " Hui Tang
2021-05-22  8:37 ` Hui Tang [this message]
2021-05-22  8:37 ` [PATCH 23/24] scsi: dc395x: " Hui Tang
2021-05-22  8:37 ` [PATCH 24/24] scsi: aha1740: " Hui Tang

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1621672648-39955-23-git-send-email-tanghui20@huawei.com \
    --to=tanghui20@huawei.com \
    --cc=aacraid@microsemi.com \
    --cc=jejb@linux.ibm.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-scsi@vger.kernel.org \
    --cc=martin.petersen@oracle.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).