diff options
author | Bob Moore <robert.moore@intel.com> | 2012-02-14 11:31:56 +0100 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2012-03-22 06:44:59 +0100 |
commit | f7b004a17c9183f023796dea0d70284684ec000d (patch) | |
tree | 885f0b9b00d2592b3bb0ee90c7b1f74aaff5e9b3 /drivers/acpi/acpica/actables.h | |
parent | ACPICA: ACPI 5: Update debug output for new notify values (diff) | |
download | linux-f7b004a17c9183f023796dea0d70284684ec000d.tar.xz linux-f7b004a17c9183f023796dea0d70284684ec000d.zip |
ACPICA: Add acpi_os_physical_table_override interface
This interface allows the host to override a table via a
physical address, instead of the logical address required by
acpi_os_table_override. This simplifies the host implementation.
Initial implementation by Thomas Renninger. ACPICA implementation
creates a single function for table overrides that attempts both
a logical and a physical override.
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Thomas Renninger <trenn@suse.de>
Signed-off-by: Lin Ming <ming.m.lin@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/acpi/acpica/actables.h')
-rw-r--r-- | drivers/acpi/acpica/actables.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/acpi/acpica/actables.h b/drivers/acpi/acpica/actables.h index d5bec304c823..6712965ba8ae 100644 --- a/drivers/acpi/acpica/actables.h +++ b/drivers/acpi/acpica/actables.h @@ -67,6 +67,11 @@ acpi_status acpi_tb_resize_root_table_list(void); acpi_status acpi_tb_verify_table(struct acpi_table_desc *table_desc); +struct acpi_table_header *acpi_tb_table_override(struct acpi_table_header + *table_header, + struct acpi_table_desc + *table_desc); + acpi_status acpi_tb_add_table(struct acpi_table_desc *table_desc, u32 *table_index); |