diff options
Diffstat (limited to 'board_enable.c')
-rw-r--r-- | board_enable.c | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/board_enable.c b/board_enable.c index 94cfc9d0..194357a3 100644 --- a/board_enable.c +++ b/board_enable.c @@ -1094,15 +1094,7 @@ static int nvidia_mcp_gpio_set(int gpio, int raise) return -1; } -#if !defined(OLD_PCI_GET_DEV) - dev = pci_get_dev(pacc, dev->domain, dev->bus, dev->dev, 1); -#else - /* pciutils/libpci before version 2.2 is too old to support - * PCI domains. Such old machines usually don't have domains - * besides domain 0, so this is not a problem. - */ - dev = pci_get_dev(pacc, dev->bus, dev->dev, 1); -#endif + dev = pcidev_getdevfn(dev, 1); if (!dev) { msg_perr("MCP SMBus controller could not be found\n"); return -1; |