device: Use pcidev_path_on_root()
Change-Id: I2e28b9f4ecaf258bff8a062b5a54cb3d8e2bb9b0 Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/c/30400 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
This commit is contained in:
committed by
Felix Held
parent
c70eed1e62
commit
e7377556cc
@@ -22,7 +22,7 @@ const struct soc_intel_common_config *chip_get_common_soc_structure(void)
|
||||
const struct soc_intel_common_config *soc_config;
|
||||
const config_t *config;
|
||||
int devfn = SA_DEVFN_ROOT;
|
||||
const struct device *dev = dev_find_slot(0, devfn);
|
||||
const struct device *dev = pcidev_path_on_root(devfn);
|
||||
|
||||
if (!dev || !dev->chip_info)
|
||||
die("Could not find SA_DEV_ROOT devicetree config!\n");
|
||||
|
||||
@@ -236,7 +236,7 @@ static uintptr_t gspi_calc_base_addr(unsigned int gspi_bus)
|
||||
if (devfn < 0)
|
||||
return 0;
|
||||
|
||||
dev = dev_find_slot(0, devfn);
|
||||
dev = pcidev_path_on_root(devfn);
|
||||
if (!dev || !dev->enabled)
|
||||
return 0;
|
||||
|
||||
|
||||
@@ -65,7 +65,7 @@ static int lpss_i2c_early_init_bus(unsigned int bus)
|
||||
|
||||
/* Look up the controller device in the devicetree */
|
||||
dev = PCI_DEV(0, PCI_SLOT(devfn), PCI_FUNC(devfn));
|
||||
tree_dev = dev_find_slot(0, devfn);
|
||||
tree_dev = pcidev_path_on_root(devfn);
|
||||
if (!tree_dev || !tree_dev->enabled) {
|
||||
printk(BIOS_ERR, "I2C%u device not enabled\n", bus);
|
||||
return -1;
|
||||
@@ -134,7 +134,7 @@ uintptr_t dw_i2c_base_address(unsigned int bus)
|
||||
return (uintptr_t)NULL;
|
||||
|
||||
/* devfn -> dev */
|
||||
dev = dev_find_slot(0, devfn);
|
||||
dev = pcidev_path_on_root(devfn);
|
||||
if (!dev || !dev->enabled)
|
||||
return (uintptr_t)NULL;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user