diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2018-05-16 12:28:52 +0200 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2018-05-31 15:28:00 +0000 |
commit | a89b9cd4933e913d84ece773935bc27370429c1c (patch) | |
tree | 8ec12bcdaf4cbe1e56cfc4bcfe02bf7783beca93 /src/arch | |
parent | 7731932937b2f0f4f968a6c8c3b2ebb4429de034 (diff) |
arch/x86/include/arch: Remove space after __attribute__
Change-Id: I7c74eff97580fbf39242f16dbdde98286678d596
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/26321
Reviewed-by: Christoph Pomaska <cp_public@posteo.de>
Reviewed-by: Werner Zeh <werner.zeh@siemens.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/arch')
-rw-r--r-- | src/arch/x86/include/arch/acpi.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/arch/x86/include/arch/acpi.h b/src/arch/x86/include/arch/acpi.h index 5480834eb2..f5e2e81c81 100644 --- a/src/arch/x86/include/arch/acpi.h +++ b/src/arch/x86/include/arch/acpi.h @@ -423,7 +423,7 @@ typedef struct acpi_dbg2_header { struct acpi_table_header header; uint32_t devices_offset; uint32_t devices_count; -} __attribute__ ((packed)) acpi_dbg2_header_t; +} __attribute__((packed)) acpi_dbg2_header_t; /* DBG2: Microsoft Debug Port Table 2 device entry */ typedef struct acpi_dbg2_device { @@ -439,7 +439,7 @@ typedef struct acpi_dbg2_device { uint8_t reserved[2]; uint16_t base_address_offset; uint16_t address_size_offset; -} __attribute__ ((packed)) acpi_dbg2_device_t; +} __attribute__((packed)) acpi_dbg2_device_t; /* FADT (Fixed ACPI Description Table) */ typedef struct acpi_fadt { |