mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-15 20:06:43 +07:00
enic: fix boolreturn.cocci warnings
drivers/net/ethernet/cisco/enic/vnic_dev.c:1294:9-10: WARNING: return of 0/1 in function 'vnic_dev_capable_udp_rss' with return type bool
Return statements in functions returning bool should use
true/false instead of 1/0.
Generated by: scripts/coccinelle/misc/boolreturn.cocci
Fixes: 48398b6e70
("enic: set UDP rss flag")
CC: Govindarajulu Varadarajan <gvaradar@cisco.com>
Signed-off-by: Fengguang Wu <fengguang.wu@intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
b1312b8501
commit
7d99429afa
@ -1291,7 +1291,7 @@ bool vnic_dev_capable_udp_rss(struct vnic_dev *vdev)
|
||||
|
||||
err = vnic_dev_cmd(vdev, CMD_CAPABILITY, &a0, &a1, wait);
|
||||
if (err || !a0)
|
||||
return 0;
|
||||
return false;
|
||||
|
||||
rss_hash_type = (a1 >> NIC_CFG_RSS_HASH_TYPE_SHIFT) &
|
||||
NIC_CFG_RSS_HASH_TYPE_MASK_FIELD;
|
||||
|
Loading…
Reference in New Issue
Block a user