aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/google/octopus/mainboard.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainboard/google/octopus/mainboard.c')
-rw-r--r--src/mainboard/google/octopus/mainboard.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mainboard/google/octopus/mainboard.c b/src/mainboard/google/octopus/mainboard.c
index 57a614ee34..5b011c8f19 100644
--- a/src/mainboard/google/octopus/mainboard.c
+++ b/src/mainboard/google/octopus/mainboard.c
@@ -36,7 +36,7 @@
static bool is_cnvi_held_in_reset(void)
{
- struct device *dev = dev_find_slot(0, PCH_DEVFN_CNVI);
+ struct device *dev = pcidev_path_on_root(PCH_DEVFN_CNVI);
uint32_t reg = pci_read_config32(dev, PCI_VENDOR_ID);
/*
@@ -167,7 +167,7 @@ static void wifi_device_update(void)
else
devfn = PCH_DEVFN_PCIE1;
- dev = dev_find_slot(0, devfn);
+ dev = pcidev_path_on_root(devfn);
if (dev)
dev->enabled = 0;
}