[<prev] [next>] [day] [month] [year] [list]
Message-Id: <20240111113059.15899-1-chenxb_99091@126.com>
Date: Thu, 11 Jan 2024 11:30:59 +0000
From: XueBing Chen <chenxb_99091@....com>
To: jejb@...ux.ibm.com,
aacraid@...rosemi.com,
martin.petersen@...cle.com
Cc: linux-kernel@...r.kernel.org,
linux-scsi@...r.kernel.org,
XueBing Chen <chenxb_99091@....com>
Subject: [PATCH] scsi: aacraid: Clean up errors in linit.c
Fix the following errors reported by checkpatch:
ERROR: "foo* bar" should be "foo *bar"
ERROR: "foo * bar" should be "foo *bar"
Signed-off-by: XueBing Chen <chenxb_99091@....com>
---
drivers/scsi/aacraid/linit.c | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/drivers/scsi/aacraid/linit.c b/drivers/scsi/aacraid/linit.c
index 68f4dbcfff49..cd62e95a7c7a 100644
--- a/drivers/scsi/aacraid/linit.c
+++ b/drivers/scsi/aacraid/linit.c
@@ -676,12 +676,12 @@ static int get_num_of_incomplete_fibs(struct aac_dev *aac)
return fcnt.mlcnt + fcnt.llcnt + fcnt.ehcnt + fcnt.fwcnt;
}
-static int aac_eh_abort(struct scsi_cmnd* cmd)
+static int aac_eh_abort(struct scsi_cmnd *cmd)
{
struct aac_cmd_priv *cmd_priv = aac_priv(cmd);
- struct scsi_device * dev = cmd->device;
- struct Scsi_Host * host = dev->host;
- struct aac_dev * aac = (struct aac_dev *)host->hostdata;
+ struct scsi_device *dev = cmd->device;
+ struct Scsi_Host *host = dev->host;
+ struct aac_dev *aac = (struct aac_dev *)host->hostdata;
int count, found;
u32 bus, cid;
int ret = FAILED;
@@ -900,9 +900,9 @@ static void aac_tmf_callback(void *context, struct fib *fibptr)
*/
static int aac_eh_dev_reset(struct scsi_cmnd *cmd)
{
- struct scsi_device * dev = cmd->device;
- struct Scsi_Host * host = dev->host;
- struct aac_dev * aac = (struct aac_dev *)host->hostdata;
+ struct scsi_device *dev = cmd->device;
+ struct Scsi_Host *host = dev->host;
+ struct aac_dev *aac = (struct aac_dev *)host->hostdata;
struct aac_hba_map_info *info;
int count;
u32 bus, cid;
--
2.17.1
Powered by blists - more mailing lists