aboutsummaryrefslogtreecommitdiff
path: root/include/dm/acpi.h
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2020-04-26 09:19:52 -0600
committerBin Meng <bmeng.cn@gmail.com>2020-04-30 17:16:12 +0800
commitb38309b7375e2fa6d99c14f4abd84985dc932ff1 (patch)
tree25d3424db4270d2ff1639ca7fb1d928647778816 /include/dm/acpi.h
parent7e586f69070db02171dca77f41adbcccd6394b33 (diff)
downloadu-boot-b38309b7375e2fa6d99c14f4abd84985dc932ff1.zip
u-boot-b38309b7375e2fa6d99c14f4abd84985dc932ff1.tar.gz
u-boot-b38309b7375e2fa6d99c14f4abd84985dc932ff1.tar.bz2
acpi: Move the xsdt pointer to acpi_ctx
Put this in the context along with the other important pointers. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Wolfgang Wallner <wolfgang.wallner@br-automation.com>
Diffstat (limited to 'include/dm/acpi.h')
-rw-r--r--include/dm/acpi.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/dm/acpi.h b/include/dm/acpi.h
index c6c63b8..7563a4c 100644
--- a/include/dm/acpi.h
+++ b/include/dm/acpi.h
@@ -33,11 +33,13 @@
* @rsdp: Pointer to the Root System Description Pointer, typically used when
* adding a new table. The RSDP holds pointers to the RSDT and XSDT.
* @rsdt: Pointer to the Root System Description Table
+ * @xsdt: Pointer to the Extended System Description Table
*/
struct acpi_ctx {
void *current;
struct acpi_rsdp *rsdp;
struct acpi_rsdt *rsdt;
+ struct acpi_xsdt *xsdt;
};
/**