diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2017-07-21 19:32:03 (GMT) |
---|---|---|
committer | Bin Meng <bmeng.cn@gmail.com> | 2017-07-30 02:30:25 (GMT) |
commit | 2dcbef6f6c43737b3e9244478c6e768a1e73babf (patch) | |
tree | e2d1c0e474008c5cdc86c7689568ac0f913fa4e5 /arch/x86 | |
parent | 684c4cd01125926ac6d9e0855b8f712e3b344afd (diff) | |
download | u-boot-fsl-qoriq-2dcbef6f6c43737b3e9244478c6e768a1e73babf.tar.xz |
x86: acpi: Name fields in FADT in accordance with specification
ACPI specification defines FADT fields marked as reserved in U-Boot.
Name these fields in accordance with ACPI specification.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'arch/x86')
-rw-r--r-- | arch/x86/include/asm/acpi_table.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/arch/x86/include/asm/acpi_table.h b/arch/x86/include/asm/acpi_table.h index dd7a946..e177c44 100644 --- a/arch/x86/include/asm/acpi_table.h +++ b/arch/x86/include/asm/acpi_table.h @@ -178,9 +178,8 @@ struct __packed acpi_fadt { u32 flags; struct acpi_gen_regaddr reset_reg; u8 reset_value; - u8 res3; - u8 res4; - u8 res5; + u16 arm_boot_arch; + u8 minor_revision; u32 x_firmware_ctl_l; u32 x_firmware_ctl_h; u32 x_dsdt_l; |