mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-09 04:10:18 +09:00
scsi: bfa: Use the proper data type for BLIST flags
[ Upstream commit 0349be31e4ffc79723e46e2e373569567b06347b ]
Fix the following sparse warning:
drivers/scsi/bfa/bfad_bsg.c:2553:50: sparse: sparse: incorrect type in initializer (different base types)
Fixes: 2e5a6c3bac ("scsi: bfa: Convert bfad_reset_sdev_bflags() from a macro into a function")
Reported-by: kernel test robot <lkp@intel.com>
Closes: https://lore.kernel.org/oe-kbuild-all/202311031255.lmSPisIk-lkp@intel.com/
Signed-off-by: Bart Van Assche <bvanassche@acm.org>
Link: https://lore.kernel.org/r/20231115193338.2261972-1-bvanassche@acm.org
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
7615536a37
commit
65d10f83ac
@@ -2550,7 +2550,7 @@ out:
|
||||
static void bfad_reset_sdev_bflags(struct bfad_im_port_s *im_port,
|
||||
int lunmask_cfg)
|
||||
{
|
||||
const u32 scan_flags = BLIST_NOREPORTLUN | BLIST_SPARSELUN;
|
||||
const blist_flags_t scan_flags = BLIST_NOREPORTLUN | BLIST_SPARSELUN;
|
||||
struct bfad_itnim_s *itnim;
|
||||
struct scsi_device *sdev;
|
||||
unsigned long flags;
|
||||
|
||||
Reference in New Issue
Block a user