soc,southbridge/amd: Remove some explicit zero-initializers
Change-Id: I263c159fe4b7757dd5abfc0d6248e45b749df980 Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/41908 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Nico Huber <nico.h@gmx.de> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
This commit is contained in:
committed by
Felix Held
parent
954a4a4d16
commit
0ef6562656
@@ -111,16 +111,6 @@ void acpi_create_fadt(acpi_fadt_t *fadt, acpi_facs_t *facs, void *dsdt)
|
||||
fadt->smi_cmd = APM_CNT;
|
||||
fadt->acpi_enable = APM_CNT_ACPI_ENABLE;
|
||||
fadt->acpi_disable = APM_CNT_ACPI_DISABLE;
|
||||
fadt->s4bios_req = 0; /* Not supported */
|
||||
fadt->pstate_cnt = 0; /* Not supported */
|
||||
fadt->cst_cnt = 0; /* Not supported */
|
||||
} else {
|
||||
fadt->smi_cmd = 0; /* disable system management mode */
|
||||
fadt->acpi_enable = 0; /* unused if SMI_CMD = 0 */
|
||||
fadt->acpi_disable = 0; /* unused if SMI_CMD = 0 */
|
||||
fadt->s4bios_req = 0; /* unused if SMI_CMD = 0 */
|
||||
fadt->pstate_cnt = 0; /* unused if SMI_CMD = 0 */
|
||||
fadt->cst_cnt = 0x00; /* unused if SMI_CMD = 0 */
|
||||
}
|
||||
|
||||
fadt->pm1a_evt_blk = ACPI_PM_EVT_BLK;
|
||||
|
@@ -83,16 +83,6 @@ void acpi_create_fadt(acpi_fadt_t *fadt, acpi_facs_t *facs, void *dsdt)
|
||||
fadt->smi_cmd = APM_CNT;
|
||||
fadt->acpi_enable = APM_CNT_ACPI_ENABLE;
|
||||
fadt->acpi_disable = APM_CNT_ACPI_DISABLE;
|
||||
fadt->s4bios_req = 0; /* Not supported */
|
||||
fadt->pstate_cnt = 0; /* Not supported */
|
||||
fadt->cst_cnt = 0; /* Not supported */
|
||||
} else {
|
||||
fadt->smi_cmd = 0; /* disable system management mode */
|
||||
fadt->acpi_enable = 0; /* unused if SMI_CMD = 0 */
|
||||
fadt->acpi_disable = 0; /* unused if SMI_CMD = 0 */
|
||||
fadt->s4bios_req = 0; /* unused if SMI_CMD = 0 */
|
||||
fadt->pstate_cnt = 0; /* unused if SMI_CMD = 0 */
|
||||
fadt->cst_cnt = 0x00; /* unused if SMI_CMD = 0 */
|
||||
}
|
||||
|
||||
fadt->pm1a_evt_blk = ACPI_PM_EVT_BLK;
|
||||
|
Reference in New Issue
Block a user