ACPI: Move redundant FADT reserved entry
Change-Id: I35f66cdad6b8bedf4337aa8e5af7b0f1b53fe674 Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/42033 Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
parent
4a9569a123
commit
d4acee887e
|
@ -1242,13 +1242,16 @@ void acpi_create_fadt(acpi_fadt_t *fadt, acpi_facs_t *facs, void *dsdt)
|
|||
header->asl_compiler_revision = asl_revision;
|
||||
|
||||
fadt->firmware_ctrl = (unsigned long) facs;
|
||||
fadt->dsdt = (unsigned long) dsdt;
|
||||
|
||||
fadt->x_firmware_ctl_l = (unsigned long)facs;
|
||||
fadt->x_firmware_ctl_h = 0;
|
||||
|
||||
fadt->dsdt = (unsigned long) dsdt;
|
||||
fadt->x_dsdt_l = (unsigned long)dsdt;
|
||||
fadt->x_dsdt_h = 0;
|
||||
|
||||
/* should be 0 ACPI 3.0 */
|
||||
fadt->reserved = 0;
|
||||
|
||||
if (CONFIG(SYSTEM_TYPE_CONVERTIBLE) ||
|
||||
CONFIG(SYSTEM_TYPE_LAPTOP))
|
||||
fadt->preferred_pm_profile = PM_MOBILE;
|
||||
|
|
|
@ -694,7 +694,6 @@ void acpi_fill_fadt(acpi_fadt_t *fadt)
|
|||
u16 pmbase = pci_read_config16(dev, 0x40) & 0xfffe;
|
||||
int c2_latency;
|
||||
|
||||
fadt->reserved = 0;
|
||||
|
||||
fadt->sci_int = 0x9;
|
||||
|
||||
|
|
|
@ -519,7 +519,6 @@ void acpi_fill_fadt(acpi_fadt_t *fadt)
|
|||
fadt->mon_alrm = 0x00;
|
||||
fadt->century = 0x32;
|
||||
|
||||
fadt->reserved = 0;
|
||||
fadt->sci_int = 0x9;
|
||||
|
||||
if (permanent_smi_handler()) {
|
||||
|
|
|
@ -530,7 +530,6 @@ void acpi_fill_fadt(acpi_fadt_t *fadt)
|
|||
fadt->mon_alrm = 0x00;
|
||||
fadt->century = 0x32;
|
||||
|
||||
fadt->reserved = 0;
|
||||
fadt->sci_int = 0x9;
|
||||
|
||||
if (permanent_smi_handler()) {
|
||||
|
|
|
@ -588,7 +588,6 @@ void acpi_fill_fadt(acpi_fadt_t *fadt)
|
|||
u16 pmbase = pci_read_config16(dev, 0x40) & 0xfffe;
|
||||
int c2_latency;
|
||||
|
||||
fadt->reserved = 0;
|
||||
|
||||
fadt->sci_int = 0x9;
|
||||
|
||||
|
|
Loading…
Reference in New Issue