aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAngel Pons <th3fanbus@gmail.com>2020-06-22 17:28:42 +0200
committerPatrick Georgi <pgeorgi@google.com>2020-07-01 21:39:54 +0000
commitecdbc842e2d48362f27b8652d05606d93d1d7e26 (patch)
treee9cf19f8b9e0e7f67e3963a8aa722cd7845e40cf
parent489ffefef6fdf40d1f877f6b3b5c10f45e52c3eb (diff)
nb/intel/ironlake/northbridge.c: Drop thunk functions
Just call the called function directly. Change-Id: I0c997a63cbbd2b1029f94c23685847df910f8a0e Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/42696 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Patrick Georgi <pgeorgi@google.com>
-rw-r--r--src/northbridge/intel/ironlake/northbridge.c15
1 files changed, 2 insertions, 13 deletions
diff --git a/src/northbridge/intel/ironlake/northbridge.c b/src/northbridge/intel/ironlake/northbridge.c
index 415c142946..6b631b3114 100644
--- a/src/northbridge/intel/ironlake/northbridge.c
+++ b/src/northbridge/intel/ironlake/northbridge.c
@@ -147,13 +147,7 @@ static void mc_read_resources(struct device *dev)
add_fixed_resources(dev, 10);
}
-static void mc_set_resources(struct device *dev)
-{
- /* And call the normal set_resources */
- pci_dev_set_resources(dev);
-}
-
-static void northbridge_dmi_init(struct device *dev)
+static void northbridge_init(struct device *dev)
{
u32 reg32;
@@ -174,11 +168,6 @@ static void northbridge_dmi_init(struct device *dev)
DMIBAR32(0x88) = reg32;
}
-static void northbridge_init(struct device *dev)
-{
- northbridge_dmi_init(dev);
-}
-
/* Disable unused PEG devices based on devicetree before PCI enumeration */
static void ironlake_init(void *const chip_info)
{
@@ -203,7 +192,7 @@ static void ironlake_init(void *const chip_info)
static struct device_operations mc_ops = {
.read_resources = mc_read_resources,
- .set_resources = mc_set_resources,
+ .set_resources = pci_dev_set_resources,
.enable_resources = pci_dev_enable_resources,
.init = northbridge_init,
.acpi_fill_ssdt = generate_cpu_entries,