soc/amd: use apm_get_apmc() in APMC SMI handler
Instead of open-coding this functionality, call the apm_get_apmc() helper function. Signed-off-by: Felix Held <felix-coreboot@felixheld.de> Change-Id: Iac6b614d900e51d91a0c155116a5edc29775ea99 Reviewed-on: https://review.coreboot.org/c/coreboot/+/79836 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Matt DeVillier <matt.devillier@amd.corp-partner.google.com>
This commit is contained in:
parent
21710ea3cd
commit
141955ac74
|
@ -91,7 +91,7 @@ void handle_smi_store(void)
|
|||
|
||||
void fch_apmc_smi_handler(void)
|
||||
{
|
||||
const uint8_t cmd = inb(pm_acpi_smi_cmd_port());
|
||||
const uint8_t cmd = apm_get_apmc();
|
||||
|
||||
switch (cmd) {
|
||||
case APM_CNT_ACPI_ENABLE:
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
*/
|
||||
static void stoneyridge_fch_apmc_smi_handler(void)
|
||||
{
|
||||
const uint8_t cmd = inb(pm_acpi_smi_cmd_port());
|
||||
const uint8_t cmd = apm_get_apmc();
|
||||
|
||||
switch (cmd) {
|
||||
case APM_CNT_ACPI_ENABLE:
|
||||
|
|
Loading…
Reference in New Issue