ssb: PCI revision ID register is 8-bit wide
authorSergei Shtylyov <sshtylyov@ru.mvista.com>
Fri, 1 Jul 2011 18:35:28 +0000 (22:35 +0400)
committerJohn W. Linville <linville@tuxdriver.com>
Tue, 5 Jul 2011 19:26:55 +0000 (15:26 -0400)
The SSB code reads PCI revision ID register as 16-bit entity while the register
is actually 8-bit only (the next 8 bits are the programming interface register).
Fix the read and make the 'rev' field of 'struct ssb_boardinfo' 8-bit as well,
to match the register size.

Signed-off-by: Sergei Shtylyov <sshtylyov@ru.mvista.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
drivers/ssb/pci.c
include/linux/ssb/ssb.h

index 7ad48585c5e6c0cc0ad9c0593ae3ad24394b0314..52b1ceb748c75bbefeab539e24744a8e2bd5715f 100644 (file)
@@ -738,7 +738,7 @@ static void ssb_pci_get_boardinfo(struct ssb_bus *bus,
                             &bi->vendor);
        pci_read_config_word(bus->host_pci, PCI_SUBSYSTEM_ID,
                             &bi->type);
-       pci_read_config_word(bus->host_pci, PCI_REVISION_ID,
+       pci_read_config_byte(bus->host_pci, PCI_REVISION_ID,
                             &bi->rev);
 }
 
index 252e448217874ec0e8b47ce4ec2af2d844c45354..b0928c10111b547e5e323bf1b2f2a5952a430c94 100644 (file)
@@ -99,7 +99,7 @@ struct ssb_sprom {
 struct ssb_boardinfo {
        u16 vendor;
        u16 type;
-       u16 rev;
+       u rev;
 };