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

Commit 02948344 authored by Joe Perches's avatar Joe Perches Committed by David S. Miller
Browse files

bnx2x: Convert return 0 to return rc



These "return 0;" uses seem wrong as there are
rc variables where error return values are set
but unused.

Signed-off-by: default avatarJoe Perches <joe@perches.com>
Acked-by: default avatarDmitry Kravkov <Dmitry.Kravkov@qlogic.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent a8d0d841
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2695,7 +2695,7 @@ int bnx2x_set_vf_mac(struct net_device *dev, int vfidx, u8 *mac)
		bnx2x_unlock_vf_pf_channel(bp, vf, CHANNEL_TLV_PF_SET_MAC);
	}

	return 0;
	return rc;
}

int bnx2x_set_vf_vlan(struct net_device *dev, int vfidx, u16 vlan, u8 qos)
+1 −1
Original line number Diff line number Diff line
@@ -747,7 +747,7 @@ int bnx2x_vfpf_config_mac(struct bnx2x *bp, u8 *addr, u8 vf_qid, bool set)
out:
	bnx2x_vfpf_finalize(bp, &req->first_tlv);

	return 0;
	return rc;
}

/* request pf to config rss table for vf queues*/