aboutsummaryrefslogtreecommitdiff
path: root/src/northbridge/amd/agesa/family16kb/dimmSpd.c
diff options
context:
space:
mode:
authorKyösti Mälkki <kyosti.malkki@gmail.com>2018-05-22 01:15:17 +0300
committerKyösti Mälkki <kyosti.malkki@gmail.com>2019-01-04 21:22:04 +0000
commit4ad7f5b1a4f81343cee634a3a49145a3ed9855b7 (patch)
tree6d94849295621aa816ac37a48cf8cf94b066bc4f /src/northbridge/amd/agesa/family16kb/dimmSpd.c
parent33ff44c37ccb96c209b002e5430deefc00cc5591 (diff)
AGESA: Use pcidev_on_root()
We have constant CONFIG_CBB==0, replace ill dev_find_slot() with safe pcidev_on_root(); Change-Id: Ieb2030fa3d77a9f49fc5faf12b92b5f00f49d354 Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/c/26482 Reviewed-by: Arthur Heymans <arthur@aheymans.xyz> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/northbridge/amd/agesa/family16kb/dimmSpd.c')
-rw-r--r--src/northbridge/amd/agesa/family16kb/dimmSpd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/northbridge/amd/agesa/family16kb/dimmSpd.c b/src/northbridge/amd/agesa/family16kb/dimmSpd.c
index 3720c55098..8c453bb7ae 100644
--- a/src/northbridge/amd/agesa/family16kb/dimmSpd.c
+++ b/src/northbridge/amd/agesa/family16kb/dimmSpd.c
@@ -32,7 +32,7 @@ AGESA_STATUS AmdMemoryReadSPD (UINT32 unused1, UINTN unused2, AGESA_READ_SPD_PAR
{
UINT8 spdAddress;
- DEVTREE_CONST struct device *dev = dev_find_slot(0, PCI_DEVFN(0x18, 2));
+ DEVTREE_CONST struct device *dev = pcidev_on_root(0x18, 2);
if (dev == NULL)
return AGESA_ERROR;