mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-20 13:44:40 +07:00
fm10k: remove extraneous NULL check on l2_accel
l2_accel was checked for NULL at the top of fm10k_dfwd_del_station, and we return if it is not defined. Due to this, we already know it can't be null here so a separate check is meaningless. Discovered via cppcheck. Signed-off-by: Jacob Keller <jacob.e.keller@intel.com> Tested-by: Krishneil Singh <Krishneil.k.singh@intel.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
This commit is contained in:
parent
c0e58e93d7
commit
f1f3322eb4
@ -1333,8 +1333,7 @@ static void fm10k_dfwd_del_station(struct net_device *dev, void *priv)
|
||||
dglort.rss_l = fls(interface->ring_feature[RING_F_RSS].mask);
|
||||
dglort.pc_l = fls(interface->ring_feature[RING_F_QOS].mask);
|
||||
dglort.glort = interface->glort;
|
||||
if (l2_accel)
|
||||
dglort.shared_l = fls(l2_accel->size);
|
||||
dglort.shared_l = fls(l2_accel->size);
|
||||
hw->mac.ops.configure_dglort_map(hw, &dglort);
|
||||
|
||||
/* If table is empty remove it */
|
||||
|
Loading…
Reference in New Issue
Block a user