From d175e06ac305274d8e1a8a4658f7f5518c89b801 Mon Sep 17 00:00:00 2001 From: Carl-Daniel Hailfinger Date: Fri, 21 May 2010 23:00:56 +0000 Subject: Libpci < 2.2.4 can not store class info in struct pci_dev Read class info manually and store it in a separate variable. Corresponding to flashrom svn r1004. Signed-off-by: Carl-Daniel Hailfinger Acked-by: Uwe Hermann --- board_enable.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/board_enable.c b/board_enable.c index 2cf81c2..3fffaa5 100644 --- a/board_enable.c +++ b/board_enable.c @@ -789,9 +789,11 @@ static int intel_ich_gpio_set(int gpio, int raise) /* First, look for a known LPC bridge */ for (dev = pacc->devices; dev; dev = dev->next) { - pci_fill_info(dev, PCI_FILL_CLASS); + uint16_t device_class; + /* libpci before version 2.2.4 does not store class info. */ + device_class = pci_read_word(dev, PCI_CLASS_DEVICE); if ((dev->vendor_id == 0x8086) && - (dev->device_class == 0x0601)) { /* ISA Bridge */ + (device_class == 0x0601)) { /* ISA Bridge */ /* Is this device in our list? */ for (i = 0; intel_ich_gpio_table[i].id; i++) if (dev->device_id == intel_ich_gpio_table[i].id) -- cgit v1.1