i40e: Add missing \n to end of dev_err message
Trival fix, dev_err message is missing a \n, so add it. 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
17a032b7bf
commit
ff00f3a967
|
@ -2940,7 +2940,7 @@ int i40e_ndo_set_vf_bw(struct net_device *netdev, int vf_id, int min_tx_rate,
|
|||
}
|
||||
|
||||
if (max_tx_rate > speed) {
|
||||
dev_err(&pf->pdev->dev, "Invalid max tx rate %d specified for VF %d.",
|
||||
dev_err(&pf->pdev->dev, "Invalid max tx rate %d specified for VF %d.\n",
|
||||
max_tx_rate, vf->vf_id);
|
||||
ret = -EINVAL;
|
||||
goto error;
|
||||
|
|
Loading…
Reference in New Issue