diff options
author | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2012-04-27 21:53:12 +0200 |
---|---|---|
committer | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2012-04-28 18:39:12 +0200 |
commit | 61e7c289d45f0113925e9d59e7d0e415a049bd1d (patch) | |
tree | e78e1dcc0b5d6daaedaec1d29401e4ed8a425d08 | |
parent | 5b73d4d1bbfa79d4672fa96822f5337860a8ee29 (diff) |
ChromeOS: Add missing prototype for acpi_get_vdat_info()
Change-Id: I4bd9b52cfc24a8ff73be05ee535b9e16c0d9bd79
Signed-off-by: Stefan Reinauer <reinauer@google.com>
Reviewed-on: http://review.coreboot.org/946
Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
Tested-by: build bot (Jenkins)
-rw-r--r-- | src/arch/x86/include/arch/acpi.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/arch/x86/include/arch/acpi.h b/src/arch/x86/include/arch/acpi.h index d46cbc2bca..d1341e6a0f 100644 --- a/src/arch/x86/include/arch/acpi.h +++ b/src/arch/x86/include/arch/acpi.h @@ -498,4 +498,8 @@ void generate_cpu_entries(void); #endif /* CONFIG_GENERATE_ACPI_TABLES */ +#if CONFIG_CHROMEOS +void acpi_get_vdat_info(void **vdat_addr, uint32_t *vdat_size); +#endif /* CONFIG_CHROMEOS */ + #endif /* __ASM_ACPI_H */ |