summaryrefslogtreecommitdiffstats
path: root/src/acpi/acpi.c
diff options
context:
space:
mode:
authorArthur Heymans <arthur@aheymans.xyz>2022-12-08 17:29:33 +0100
committerLean Sheng Tan <sheng.tan@9elements.com>2024-01-22 13:54:41 +0000
commit8b036e14841cdbb8a8f8f6465bad7ed379accda3 (patch)
tree82e6e53db6b5cfeaa59d9114981698d724a92846 /src/acpi/acpi.c
parentcd6fed2da8867567531ba8357dad9db23b9c6753 (diff)
downloadcoreboot-8b036e14841cdbb8a8f8f6465bad7ed379accda3.tar.gz
coreboot-8b036e14841cdbb8a8f8f6465bad7ed379accda3.tar.bz2
coreboot-8b036e14841cdbb8a8f8f6465bad7ed379accda3.zip
device/device.h: Drop acpi_inject_dsdt
This is now unused in the tree and filling SSDT should always be used. TEST=intel/archercity CRB Signed-off-by: Arthur Heymans <arthur@aheymans.xyz> Change-Id: Iffefc865901b15fa299931b6ed4c27a9e3a1c330 Reviewed-on: https://review.coreboot.org/c/coreboot/+/78334 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Nico Huber <nico.h@gmx.de> Reviewed-by: Patrick Rudolph <patrick.rudolph@9elements.com>
Diffstat (limited to 'src/acpi/acpi.c')
-rw-r--r--src/acpi/acpi.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/acpi/acpi.c b/src/acpi/acpi.c
index 0bd82cbdfbc8..0e4798c448cf 100644
--- a/src/acpi/acpi.c
+++ b/src/acpi/acpi.c
@@ -1362,9 +1362,6 @@ static void acpi_create_dsdt(acpi_header_t *header, void *dsdt_file_arg)
if (CONFIG(CHROMEOS_NVS))
acpi_fill_cnvs();
- for (const struct device *dev = all_devices; dev; dev = dev->next)
- if (dev->ops && dev->ops->acpi_inject_dsdt)
- dev->ops->acpi_inject_dsdt(dev);
current = (unsigned long)acpigen_get_current();
memcpy((char *)current,
(char *)dsdt_file + sizeof(acpi_header_t),