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>
This commit is contained in:
parent
489ffefef6
commit
ecdbc842e2
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue