mirror of https://gitee.com/openkylin/linux.git
i40e: clean up several indentation issues
There are several statements that have incorrect levels of indentation, fix these. Signed-off-by: Colin Ian King <colin.king@canonical.com> Tested-by: Andrew Bowers <andrewx.bowers@intel.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
This commit is contained in:
parent
1d67ad3905
commit
d1b3fa861c
|
@ -2635,10 +2635,10 @@ static int i40e_set_phys_id(struct net_device *netdev,
|
|||
default:
|
||||
break;
|
||||
}
|
||||
if (ret)
|
||||
return -ENOENT;
|
||||
else
|
||||
return 0;
|
||||
if (ret)
|
||||
return -ENOENT;
|
||||
else
|
||||
return 0;
|
||||
}
|
||||
|
||||
/* NOTE: i40e hardware uses a conversion factor of 2 for Interrupt
|
||||
|
|
|
@ -8131,8 +8131,8 @@ static int i40e_handle_lldp_event(struct i40e_pf *pf,
|
|||
i40e_service_event_schedule(pf);
|
||||
} else {
|
||||
i40e_pf_unquiesce_all_vsi(pf);
|
||||
set_bit(__I40E_CLIENT_SERVICE_REQUESTED, pf->state);
|
||||
set_bit(__I40E_CLIENT_L2_CHANGE, pf->state);
|
||||
set_bit(__I40E_CLIENT_SERVICE_REQUESTED, pf->state);
|
||||
set_bit(__I40E_CLIENT_L2_CHANGE, pf->state);
|
||||
}
|
||||
|
||||
exit:
|
||||
|
|
|
@ -3389,8 +3389,8 @@ static int i40e_vc_add_cloud_filter(struct i40e_vf *vf, u8 *msg)
|
|||
dev_info(&pf->pdev->dev,
|
||||
"VF %d: Invalid input/s, can't apply cloud filter\n",
|
||||
vf->vf_id);
|
||||
aq_ret = I40E_ERR_PARAM;
|
||||
goto err;
|
||||
aq_ret = I40E_ERR_PARAM;
|
||||
goto err;
|
||||
}
|
||||
|
||||
cfilter = kzalloc(sizeof(*cfilter), GFP_KERNEL);
|
||||
|
|
Loading…
Reference in New Issue