mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-01-17 22:56:06 +07:00
i40evf: clean up init error messages
Add an error message when the admin queue message never completes, and fix formatting on another one that was unnecessarily wrapped. Change-ID: I8b8a4eb7629d741f09357250144023cd4a72231f Signed-off-by: Mitch Williams <mitch.a.williams@intel.com> Signed-off-by: Catherine Sullivan <catherine.sullivan@intel.com> Tested-by: Sibai Li <sibai.li@intel.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
This commit is contained in:
parent
c89a9e00f9
commit
10bdd67b4a
@ -1968,8 +1968,7 @@ static void i40evf_init_task(struct work_struct *work)
|
||||
}
|
||||
err = i40evf_send_api_ver(adapter);
|
||||
if (err) {
|
||||
dev_err(&pdev->dev, "Unable to send to PF (%d)\n",
|
||||
err);
|
||||
dev_err(&pdev->dev, "Unable to send to PF (%d)\n", err);
|
||||
i40evf_shutdown_adminq(hw);
|
||||
goto err;
|
||||
}
|
||||
@ -1977,8 +1976,10 @@ static void i40evf_init_task(struct work_struct *work)
|
||||
goto restart;
|
||||
break;
|
||||
case __I40EVF_INIT_VERSION_CHECK:
|
||||
if (!i40evf_asq_done(hw))
|
||||
if (!i40evf_asq_done(hw)) {
|
||||
dev_err(&pdev->dev, "Admin queue command never completed.\n");
|
||||
goto err;
|
||||
}
|
||||
|
||||
/* aq msg sent, awaiting reply */
|
||||
err = i40evf_verify_api_ver(adapter);
|
||||
|
Loading…
Reference in New Issue
Block a user