aboutsummaryrefslogtreecommitdiff
path: root/src/include/device/device.h
diff options
context:
space:
mode:
authorVladimir Serbinenko <phcoder@gmail.com>2014-10-05 14:34:17 +0200
committerVladimir Serbinenko <phcoder@gmail.com>2014-10-11 04:08:42 +0200
commit0a66991a345f437e957ecc0ddeed70bc304d2a43 (patch)
tree58c9387203f87d7072a0cca03fa87a3dce920d27 /src/include/device/device.h
parent334fd8e28b6f572dc8a82c7969696c6072709583 (diff)
acpi: Remove explicit pointer tracking in per-device ssdt.
It's useless and error-prone. Change-Id: Ie385e147d42b05290ab8c3ca193c5c871306f4ac Signed-off-by: Vladimir Serbinenko <phcoder@gmail.com> Reviewed-on: http://review.coreboot.org/7018 Tested-by: build bot (Jenkins) Reviewed-by: Aaron Durbin <adurbin@google.com>
Diffstat (limited to 'src/include/device/device.h')
-rw-r--r--src/include/device/device.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/include/device/device.h b/src/include/device/device.h
index 7ae49f5d82..a7158020b3 100644
--- a/src/include/device/device.h
+++ b/src/include/device/device.h
@@ -59,8 +59,7 @@ struct device_operations {
#endif
#if IS_ENABLED(CONFIG_GENERATE_ACPI_TABLES) && IS_ENABLED(CONFIG_PER_DEVICE_ACPI_TABLES)
unsigned long (*write_acpi_tables)(unsigned long start, struct acpi_rsdp *rsdp);
- unsigned long (*acpi_fill_ssdt_generator)(unsigned long current,
- const char *oem_table_id);
+ void (*acpi_fill_ssdt_generator)(void);
void (*acpi_inject_dsdt_generator)(void);
#endif
const struct pci_operations *ops_pci;