diff mbox series

qla2xxx: fix broken #endif placement

Message ID YE4snvoW1SuwcXAn@localhost.localdomain
State New
Headers show
Series qla2xxx: fix broken #endif placement | expand

Commit Message

Alexey Dobriyan March 14, 2021, 3:32 p.m. UTC
Only half of the file is under include guard because terminating #endif
is placed too early.

Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
---

 drivers/scsi/qla2xxx/qla_target.h |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Himanshu Madhani March 15, 2021, 7:46 p.m. UTC | #1
> On Mar 14, 2021, at 10:32 AM, Alexey Dobriyan <adobriyan@gmail.com> wrote:

> 

> Only half of the file is under include guard because terminating #endif

> is placed too early.

> 

> Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>

> ---

> 

> drivers/scsi/qla2xxx/qla_target.h |    2 +-

> 1 file changed, 1 insertion(+), 1 deletion(-)

> 

> --- a/drivers/scsi/qla2xxx/qla_target.h

> +++ b/drivers/scsi/qla2xxx/qla_target.h

> @@ -116,7 +116,6 @@

> 	(min(1270, ((ql) > 0) ? (QLA_TGT_DATASEGS_PER_CMD_24XX + \

> 		QLA_TGT_DATASEGS_PER_CONT_24XX*((ql) - 1)) : 0))

> #endif

> -#endif

> 

> #define GET_TARGET_ID(ha, iocb) ((HAS_EXTENDED_IDS(ha))			\

> 			 ? le16_to_cpu((iocb)->u.isp2x.target.extended)	\

> @@ -244,6 +243,7 @@ struct ctio_to_2xxx {

> #ifndef CTIO_RET_TYPE

> #define CTIO_RET_TYPE	0x17		/* CTIO return entry */

> #define ATIO_TYPE7 0x06 /* Accept target I/O entry for 24xx */

> +#endif

> 

> struct fcp_hdr {

> 	uint8_t  r_ctl;


Looks Good.

Reviewed-by: Himanshu Madhani <himanshu.madhani@oracle.com>


--
Himanshu Madhani	 Oracle Linux Engineering
Martin K. Petersen March 16, 2021, 3:13 a.m. UTC | #2
On Sun, 14 Mar 2021 18:32:46 +0300, Alexey Dobriyan wrote:

> Only half of the file is under include guard because terminating #endif

> is placed too early.


Applied to 5.12/scsi-fixes, thanks!

[1/1] qla2xxx: fix broken #endif placement
      https://git.kernel.org/mkp/scsi/c/5999b9e5b1f8

-- 
Martin K. Petersen	Oracle Linux Engineering
diff mbox series

Patch

--- a/drivers/scsi/qla2xxx/qla_target.h
+++ b/drivers/scsi/qla2xxx/qla_target.h
@@ -116,7 +116,6 @@ 
 	(min(1270, ((ql) > 0) ? (QLA_TGT_DATASEGS_PER_CMD_24XX + \
 		QLA_TGT_DATASEGS_PER_CONT_24XX*((ql) - 1)) : 0))
 #endif
-#endif
 
 #define GET_TARGET_ID(ha, iocb) ((HAS_EXTENDED_IDS(ha))			\
 			 ? le16_to_cpu((iocb)->u.isp2x.target.extended)	\
@@ -244,6 +243,7 @@  struct ctio_to_2xxx {
 #ifndef CTIO_RET_TYPE
 #define CTIO_RET_TYPE	0x17		/* CTIO return entry */
 #define ATIO_TYPE7 0x06 /* Accept target I/O entry for 24xx */
+#endif
 
 struct fcp_hdr {
 	uint8_t  r_ctl;