From: Bruce Allan Date: Fri, 8 May 2020 00:41:11 +0000 (-0700) Subject: ice: remove unnecessary check X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=86a2e00d20bd4f7fd0efd1cccd8d5a5d7270b640;p=linux.git ice: remove unnecessary check The variable status cannot be zero due to a prior check of it; remove this check. Signed-off-by: Bruce Allan Tested-by: Andrew Bowers Signed-off-by: Jeff Kirsher --- diff --git a/drivers/net/ethernet/intel/ice/ice_main.c b/drivers/net/ethernet/intel/ice/ice_main.c index fffb3433969c6..c3e5c4334e269 100644 --- a/drivers/net/ethernet/intel/ice/ice_main.c +++ b/drivers/net/ethernet/intel/ice/ice_main.c @@ -149,7 +149,7 @@ static int ice_init_mac_fltr(struct ice_pf *pf) /* We aren't useful with no MAC filters, so unregister if we * had an error */ - if (status && vsi->netdev->reg_state == NETREG_REGISTERED) { + if (vsi->netdev->reg_state == NETREG_REGISTERED) { dev_err(ice_pf_to_dev(pf), "Could not add MAC filters error %s. Unregistering device\n", ice_stat_str(status)); unregister_netdev(vsi->netdev);