diff options
author | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2019-08-09 18:04:50 +0300 |
---|---|---|
committer | Nico Huber <nico.h@gmx.de> | 2019-08-09 16:03:07 +0000 |
commit | bd7b245ff00337099083c96dd9f2ce1c8b5f48da (patch) | |
tree | 90ad9eef9e360aab05d165cfecc05d01f93bd641 /src | |
parent | 2e3aff8d86a98d66196443592946ae9272e6386c (diff) | |
download | coreboot-bd7b245ff00337099083c96dd9f2ce1c8b5f48da.tar.xz |
google/drallion: Fix build issue due to recent merge
One case slipped past the review and rebase of 733c28fa42
(soc/intel/{cnl,icl}: Use new power-failure-state API).
Change-Id: Id01df30d10e202e9672bf5be799a84f4f202fe24
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/34812
Reviewed-by: Furquan Shaikh <furquan@google.com>
Reviewed-by: Tim Wawrzynczak <twawrzynczak@chromium.org>
Reviewed-by: Nico Huber <nico.h@gmx.de>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src')
-rw-r--r-- | src/mainboard/google/drallion/chromeos.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/google/drallion/chromeos.c b/src/mainboard/google/drallion/chromeos.c index 7aaf4015b5..0eb311bb9d 100644 --- a/src/mainboard/google/drallion/chromeos.c +++ b/src/mainboard/google/drallion/chromeos.c @@ -122,6 +122,6 @@ void mainboard_prepare_cr50_reset(void) { #if ENV_RAMSTAGE /* Ensure system powers up after CR50 reset */ - pmc_set_afterg3(MAINBOARD_POWER_STATE_ON); + pmc_soc_set_afterg3_en(true); #endif } |