Commit: bd33d66
GitHub URL: https://github.com/SCST-project/scst/commit/bd33d66883ac2894a49f851c335420b0a80cd545
Author: Gleb Chesnokov
Date: 2023-10-10T15:01:54+03:00
Log Message:
-----------
qla2x00t-32gbit: Fix smatch warn for qla_init_iocb_limit()
Fix indentation for warning reported by smatch:
drivers/scsi/qla2xxx/qla_init.c:4199 qla_init_iocb_limit() warn: inconsistent indenting
Fixes: efa74a62aaa2 ("scsi: qla2xxx: Adjust IOCB resource on qpair create")
Signed-off-by: Nilesh Javali <nj...@ma...>
Link: https://lore.kernel.org/r/202...@ma...
Reviewed-by: Himanshu Madhani <him...@or...>
Signed-off-by: Martin K. Petersen <mar...@or...>
[ commit b496953dd044 upstream ]
Modified Paths:
--------------
qla2x00t-32gbit/qla_init.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
===================================================================
diff --git a/qla2x00t-32gbit/qla_init.c b/qla2x00t-32gbit/qla_init.c
index 8bdd4e3..c277f54 100644
--- a/qla2x00t-32gbit/qla_init.c
+++ b/qla2x00t-32gbit/qla_init.c
@@ -4208,7 +4208,7 @@ void qla_init_iocb_limit(scsi_qla_host_t *vha)
u8 i;
struct qla_hw_data *ha = vha->hw;
- __qla_adjust_iocb_limit(ha->base_qpair);
+ __qla_adjust_iocb_limit(ha->base_qpair);
ha->base_qpair->fwres.iocbs_used = 0;
ha->base_qpair->fwres.exch_used = 0;
|