aboutsummaryrefslogtreecommitdiff
path: root/src/northbridge/intel/x4x/northbridge.c
diff options
context:
space:
mode:
authorKyösti Mälkki <kyosti.malkki@gmail.com>2018-05-21 21:29:16 +0300
committerKyösti Mälkki <kyosti.malkki@gmail.com>2019-01-04 12:17:52 +0000
commit98a917443efa7429dd92b073e00876cfb274a058 (patch)
tree00f0b56191323e4e41d987707c303c409c051eac /src/northbridge/intel/x4x/northbridge.c
parentad7674ed00a810b472b2f66b3f5b2e0edbea02de (diff)
device: Replace ugly cases of dev_find_slot()
These few cases lacked a proper devfn parameter in the form of PCI_DEVFN(dev, fn). Change-Id: Iad0b214df12dee65360d07e887a960b0c73a3e4f Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/26481 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Werner Zeh <werner.zeh@siemens.com>
Diffstat (limited to 'src/northbridge/intel/x4x/northbridge.c')
-rw-r--r--src/northbridge/intel/x4x/northbridge.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/northbridge/intel/x4x/northbridge.c b/src/northbridge/intel/x4x/northbridge.c
index af3019c1cd..ab58c94b44 100644
--- a/src/northbridge/intel/x4x/northbridge.c
+++ b/src/northbridge/intel/x4x/northbridge.c
@@ -239,7 +239,7 @@ static void x4x_init(void *const chip_info)
{
int dev, fn, bit_base;
- struct device *const d0f0 = dev_find_slot(0, 0);
+ struct device *const d0f0 = pcidev_on_root(0x0, 0);
/* Hide internal functions based on devicetree info. */
for (dev = 6; dev > 0; --dev) {