Commit 048eeebe authored by Larry Finger's avatar Larry Finger Committed by Willy Tarreau

ssb: Fix error routine when fallback SPROM fails

commit 8052d724 upstream.

When there is a CRC error in the SPROM read from the device, the code
attempts to handle a fallback SPROM. When this also fails, the driver
returns zero rather than an error code.
Signed-off-by: default avatarLarry Finger <Larry.Finger@lwfinger.net>
Signed-off-by: default avatarKalle Valo <kvalo@codeaurora.org>
Signed-off-by: default avatarWilly Tarreau <w@1wt.eu>
parent 4e448d48
...@@ -846,6 +846,7 @@ static int ssb_pci_sprom_get(struct ssb_bus *bus, ...@@ -846,6 +846,7 @@ static int ssb_pci_sprom_get(struct ssb_bus *bus,
if (err) { if (err) {
ssb_warn("WARNING: Using fallback SPROM failed (err %d)\n", ssb_warn("WARNING: Using fallback SPROM failed (err %d)\n",
err); err);
goto out_free;
} else { } else {
ssb_dbg("Using SPROM revision %d provided by platform\n", ssb_dbg("Using SPROM revision %d provided by platform\n",
sprom->revision); sprom->revision);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment