mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 22:51:42 +00:00
amd-xgbe: Handle return code from software reset function
Currently the function that performs a software reset of the hardware provides a return code. During driver probe check this return code and exit with an error if the software reset fails. Signed-off-by: Tom Lendacky <thomas.lendacky@amd.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
9018ff5331
commit
42d452dc4a
@ -277,7 +277,11 @@ int xgbe_config_netdev(struct xgbe_prv_data *pdata)
|
||||
pdata->desc_ded_period = jiffies;
|
||||
|
||||
/* Issue software reset to device */
|
||||
pdata->hw_if.exit(pdata);
|
||||
ret = pdata->hw_if.exit(pdata);
|
||||
if (ret) {
|
||||
dev_err(dev, "software reset failed\n");
|
||||
return ret;
|
||||
}
|
||||
|
||||
/* Set default configuration data */
|
||||
xgbe_default_config(pdata);
|
||||
|
Loading…
Reference in New Issue
Block a user