Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7542fa72 authored by Roel Kluin's avatar Roel Kluin Committed by James Bottomley
Browse files

[SCSI] bfa: fix test in bfad_os_fc_host_init()



BFA_PORT_ROLE_FCP_IPFC is 0x04 so this always evaluates to true

Signed-off-by: default avatarRoel Kluin <roel.kluin@gmail.com>
Acked-by: default avatarJing Huang <huangj@Brocade.COM>
Signed-off-by: default avatarJames Bottomley <James.Bottomley@suse.de>
parent 1836d959
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -948,7 +948,7 @@ bfad_os_fc_host_init(struct bfad_im_port_s *im_port)
	if (bfad_supported_fc4s & (BFA_PORT_ROLE_FCP_IM | BFA_PORT_ROLE_FCP_TM))
		/* For FCP type 0x08 */
		fc_host_supported_fc4s(host)[2] = 1;
	if (bfad_supported_fc4s | BFA_PORT_ROLE_FCP_IPFC)
	if (bfad_supported_fc4s & BFA_PORT_ROLE_FCP_IPFC)
		/* For LLC/SNAP type 0x05 */
		fc_host_supported_fc4s(host)[3] = 0x20;
	/* For fibre channel services type 0x20 */