aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--board_enable.c3
-rw-r--r--include/programmer.h1
-rw-r--r--pcidev.c8
3 files changed, 2 insertions, 10 deletions
diff --git a/board_enable.c b/board_enable.c
index d35b151b..3e6a5a7c 100644
--- a/board_enable.c
+++ b/board_enable.c
@@ -1095,11 +1095,12 @@ static int nvidia_mcp_gpio_set(int gpio, int raise)
return -1;
}
- dev = pcidev_getdevfn(dev, 1);
+ dev = pci_get_dev(pacc, dev->domain, dev->bus, dev->dev, 1);
if (!dev) {
msg_perr("MCP SMBus controller could not be found\n");
return -1;
}
+ pci_fill_info(dev, PCI_FILL_IDENT);
devclass = pci_read_word(dev, PCI_CLASS_DEVICE);
if (devclass != 0x0C05) {
msg_perr("Unexpected device class %04x for SMBus"
diff --git a/include/programmer.h b/include/programmer.h
index d8d8b4a2..9728d8d3 100644
--- a/include/programmer.h
+++ b/include/programmer.h
@@ -125,7 +125,6 @@ int pci_init_common(void);
uintptr_t pcidev_readbar(struct pci_dev *dev, int bar);
struct pci_dev *pcidev_init(const struct programmer_cfg *cfg, const struct dev_entry *devs, int bar);
struct pci_dev *pcidev_scandev(struct pci_filter *filter, struct pci_dev *start);
-struct pci_dev *pcidev_getdevfn(struct pci_dev *dev, const int func);
struct pci_dev *pcidev_find_vendorclass(uint16_t vendor, uint16_t devclass);
struct pci_dev *pcidev_card_find(uint16_t vendor, uint16_t device, uint16_t card_vendor, uint16_t card_device);
struct pci_dev *pcidev_find(uint16_t vendor, uint16_t device);
diff --git a/pcidev.c b/pcidev.c
index 696510ed..68da3278 100644
--- a/pcidev.c
+++ b/pcidev.c
@@ -190,14 +190,6 @@ struct pci_dev *pcidev_find(uint16_t vendor, uint16_t device)
return pcidev_scandev(&filter, NULL);
}
-struct pci_dev *pcidev_getdevfn(struct pci_dev *dev, const int func)
-{
- struct pci_dev *const new = pci_get_dev(pacc, dev->domain, dev->bus, dev->dev, func);
- if (new)
- pci_fill_info(new, PCI_FILL_IDENT);
- return new;
-}
-
struct pci_dev *pcidev_find_vendorclass(uint16_t vendor, uint16_t devclass)
{
struct pci_dev *temp = NULL;