blob: ac8f3364c5e2259e7f4dbb70825c8ec8b7dc61ff (
plain)
1
2
3
4
5
6
7
8
9
|
/* SPDX-License-Identifier: GPL-2.0-only */
#include <cpu/x86/smm.h>
/* default implementation of the !HAVE_CONFIGURABLE_APMC_SMI_PORT case */
uint16_t pm_acpi_smi_cmd_port(void)
{
return APM_CNT;
}
|