x86/include/arch/acpi.h: remove incorrect semicolon
The semicolon really shouldn't be in the include... Change-Id: I90a0f516857365fddd21311cd703132af8d51007 Signed-off-by: Martin Roth <gaumless@gmail.com> Signed-off-by: Martin Roth <martin.roth@se-eng.com> Reviewed-on: http://review.coreboot.org/5808 Tested-by: build bot (Jenkins) Reviewed-by: Edward O'Callaghan <eocallaghan@alterapraxis.com> Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
This commit is contained in:
parent
16d953a460
commit
efac717f3c
|
@ -394,7 +394,7 @@ typedef struct acpi_fadt {
|
|||
#define ACPI_FADT_VGA_NOT_PRESENT (1 << 2)
|
||||
#define ACPI_FADT_MSI_NOT_SUPPORTED (1 << 3)
|
||||
#define ACPI_FADT_NO_PCIE_ASPM_CONTROL (1 << 4)
|
||||
#define ACPI_FADT_LEGACY_FREE 0; /* No legacy devices (including 8042) */
|
||||
#define ACPI_FADT_LEGACY_FREE 0x00 /* No legacy devices (including 8042) */
|
||||
|
||||
/* FADT Preferred Power Management Profile */
|
||||
enum acpi_preferred_pm_profiles {
|
||||
|
|
Loading…
Reference in New Issue