[<prev] [next>] [day] [month] [year] [list]
Message-ID: <221a3afa.89f.18ad9888f69.Coremail.wangkailong@jari.cn>
Date: Thu, 28 Sep 2023 10:05:20 +0800 (GMT+08:00)
From: "KaiLong Wang" <wangkailong@...i.cn>
To: jejb@...ux.ibm.com, martin.petersen@...cle.com
Cc: linux-scsi@...r.kernel.org, linux-kernel@...r.kernel.org
Subject: [PATCH] scsi: lpfc: Clean up errors in lpfc.h
Fix the following errors reported by checkpatch:
ERROR: space prohibited after that open parenthesis '('
ERROR: space prohibited before that close parenthesis ')'
Signed-off-by: KaiLong Wang <wangkailong@...i.cn>
---
drivers/scsi/lpfc/lpfc.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/scsi/lpfc/lpfc.h b/drivers/scsi/lpfc/lpfc.h
index af15f7a22d25..10c95dd87759 100644
--- a/drivers/scsi/lpfc/lpfc.h
+++ b/drivers/scsi/lpfc/lpfc.h
@@ -89,7 +89,7 @@ struct lpfc_sli2_slim;
#define putPaddrLow(addr) ((uint32_t) (0xffffffff & (u64)(addr)))
#define putPaddrHigh(addr) ((uint32_t) (0xffffffff & (((u64)(addr))>>32)))
#define getPaddr(high, low) ((dma_addr_t)( \
- (( (u64)(high)<<16 ) << 16)|( (u64)(low))))
+ (((u64)(high)<<16) << 16)|((u64)(low))))
/* Provide maximum configuration definitions. */
#define LPFC_DRVR_TIMEOUT 16 /* driver iocb timeout value in sec */
#define FC_MAX_ADPTMSG 64
--
2.17.1
Powered by blists - more mailing lists