diff options
author | Antonello Dettori <dev@dettori.io> | 2016-09-02 09:08:01 +0200 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2016-09-04 05:47:53 +0200 |
commit | 20c9afa9c7035d102f2ce102ffe23e86ca520242 (patch) | |
tree | 02a4f723cb42fb7fa4054d022e9dd57d9ddce07b /src | |
parent | dac8240c2e008598395de6a3c80a4fd5d2eaf9f9 (diff) |
arch/acpi.h: add #if guard to handle the absence of device_t type
Avoid the inclusion of a function declaration if the argument type
device_t is not defined.
This was not a problem until now because the
old declaration of device_t and the new one overlapped.
Change-Id: I05a6ef1bf65bf47f3c6933073ae2d26992348813
Signed-off-by: Antonello Dettori <dev@dettori.io>
Reviewed-on: https://review.coreboot.org/16404
Tested-by: build bot (Jenkins)
Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/arch/x86/include/arch/acpi.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/x86/include/arch/acpi.h b/src/arch/x86/include/arch/acpi.h index 21dae088d2..a30c5f105c 100644 --- a/src/arch/x86/include/arch/acpi.h +++ b/src/arch/x86/include/arch/acpi.h @@ -606,7 +606,7 @@ void acpi_create_slit(acpi_slit_t *slit, void acpi_create_ivrs(acpi_ivrs_t *ivrs, unsigned long (*acpi_fill_ivrs)(acpi_ivrs_t* ivrs_struct, unsigned long current)); -#if ENV_RAMSTAGE +#if ENV_RAMSTAGE && !defined(__SIMPLE_DEVICE__) void acpi_create_hpet(acpi_hpet_t *hpet); unsigned long acpi_write_hpet(device_t device, unsigned long start, acpi_rsdp_t *rsdp); |