aboutsummaryrefslogtreecommitdiff
path: root/src/northbridge/intel
diff options
context:
space:
mode:
authorAngel Pons <th3fanbus@gmail.com>2021-06-20 14:03:35 +0200
committerPatrick Georgi <pgeorgi@google.com>2021-06-22 04:45:28 +0000
commit24e14f9437a597f633b70caf4040cf1712901419 (patch)
tree64c54a1db2224de520c8947dacba0197f89e1ec6 /src/northbridge/intel
parentec5ddcd17c7b16592412ff03b77daf1be34a20a3 (diff)
nb/intel/haswell/pcie.c: Fix getting PCI function
Use `dev->path.pci.devfn` to obtain the `devfn` that `PCI_FUNC` needs. Tested on Asrock B85M Pro4, `PCI_FUNC` now obtains the correct value. Change-Id: Ia3bbd56ce0adba9d24f62ffc016cd825bcf3cc6a Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/55688 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Nico Huber <nico.h@gmx.de>
Diffstat (limited to 'src/northbridge/intel')
-rw-r--r--src/northbridge/intel/haswell/pcie.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/northbridge/intel/haswell/pcie.c b/src/northbridge/intel/haswell/pcie.c
index ac6d4ca7c0..d93639932f 100644
--- a/src/northbridge/intel/haswell/pcie.c
+++ b/src/northbridge/intel/haswell/pcie.c
@@ -50,7 +50,7 @@ static void peg_enable(struct device *dev)
{
const struct northbridge_intel_haswell_config *config = config_of(dev);
- const uint8_t func = PCI_FUNC(PCI_BDF(dev));
+ const uint8_t func = PCI_FUNC(dev->path.pci.devfn);
assert(func < ARRAY_SIZE(config->peg_cfg));