diff options
author | Larry Finger <Larry.Finger@lwfinger.net> | 2009-09-13 16:55:13 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-09-14 14:36:05 -0400 |
commit | cd559b36e77c396425284a58ce4b2c5d2167d40d (patch) | |
tree | c75c20449605e97685d00adb14d727cebd288b96 /drivers/ssb/pci.c | |
parent | 559a4741b8a5b4551b8c7e8e0de7f3e41a79bb5a (diff) |
ssb: Fix error when V1 SPROM extraction is forced
When an SPROM revision is not recognized, the code falls back to a V1
SPROM; however, that revision is not forced in the appropriate structure.
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/ssb/pci.c')
-rw-r--r-- | drivers/ssb/pci.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/ssb/pci.c b/drivers/ssb/pci.c index f853d5600ca7..9e50896233aa 100644 --- a/drivers/ssb/pci.c +++ b/drivers/ssb/pci.c | |||
@@ -600,6 +600,7 @@ static int sprom_extract(struct ssb_bus *bus, struct ssb_sprom *out, | |||
600 | ssb_printk(KERN_WARNING PFX "Unsupported SPROM" | 600 | ssb_printk(KERN_WARNING PFX "Unsupported SPROM" |
601 | " revision %d detected. Will extract" | 601 | " revision %d detected. Will extract" |
602 | " v1\n", out->revision); | 602 | " v1\n", out->revision); |
603 | out->revision = 1; | ||
603 | sprom_extract_r123(out, in); | 604 | sprom_extract_r123(out, in); |
604 | } | 605 | } |
605 | } | 606 | } |