summaryrefslogtreecommitdiff
path: root/src/soc/amd/stoneyridge/southbridge.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/soc/amd/stoneyridge/southbridge.c')
-rw-r--r--src/soc/amd/stoneyridge/southbridge.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/soc/amd/stoneyridge/southbridge.c b/src/soc/amd/stoneyridge/southbridge.c
index 4436e0ebf0..3aecbb4758 100644
--- a/src/soc/amd/stoneyridge/southbridge.c
+++ b/src/soc/amd/stoneyridge/southbridge.c
@@ -404,16 +404,12 @@ static void sb_init_acpi_ports(void)
static void set_nvs_sws(void *unused)
{
struct acpi_pm_gpe_state *state;
- struct global_nvs *gnvs;
state = cbmem_find(CBMEM_ID_POWER_STATE);
if (state == NULL)
return;
- gnvs = acpi_get_gnvs();
- if (gnvs == NULL)
- return;
- acpi_fill_gnvs(gnvs, state);
+ pm_fill_gnvs(state);
}
BOOT_STATE_INIT_ENTRY(BS_OS_RESUME, BS_ON_ENTRY, set_nvs_sws, NULL);