[<prev] [next>] [day] [month] [year] [list]
Message-ID: <999e85cf01a7117c2c968831ec703730@208suo.com>
Date: Thu, 20 Jul 2023 15:10:20 +0800
From: sunran001@...suo.com
To: hare@...e.com, jejb@...ux.ibm.com, martin.petersen@...cle.com
Cc: linux-scsi@...r.kernel.org, linux-kernel@...r.kernel.org
Subject: [PATCH] [SCSI] aic7xxx: Remove unnecessary parentheses in hyperv.h
Fix "return is not a function, parentheses are not required" checkpatch
error.
Signed-off-by: Ran Sun <sunran001@...suo.com>
---
drivers/scsi/aic7xxx/aic79xx_inline.h | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/scsi/aic7xxx/aic79xx_inline.h
b/drivers/scsi/aic7xxx/aic79xx_inline.h
index 09335a3c8691..7644e3d2ec22 100644
--- a/drivers/scsi/aic7xxx/aic79xx_inline.h
+++ b/drivers/scsi/aic7xxx/aic79xx_inline.h
@@ -50,7 +50,7 @@ static inline char *ahd_name(struct ahd_softc *ahd);
static inline char *ahd_name(struct ahd_softc *ahd)
{
- return (ahd->name);
+ return ahd->name;
}
/************************ Sequencer Execution Control
*************************/
@@ -157,13 +157,13 @@ do { \
static inline uint8_t *
ahd_get_sense_buf(struct ahd_softc *ahd, struct scb *scb)
{
- return (scb->sense_data);
+ return scb->sense_data;
}
static inline uint32_t
ahd_get_sense_bufaddr(struct ahd_softc *ahd, struct scb *scb)
{
- return (scb->sense_busaddr);
+ return scb->sense_busaddr;
}
/************************** Interrupt Processing
******************************/
Powered by blists - more mailing lists