diff options
author | Arthur Heymans <arthur@aheymans.xyz> | 2018-12-29 14:20:23 +0100 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2019-02-13 13:01:04 +0000 |
commit | 7e8bad4daad8c92911833c06b6492bacfe8efdff (patch) | |
tree | fd1438e5c866056168eb9bc3e7eb5ea09786f459 /src/mainboard/google/sarien/chromeos.c | |
parent | 1653cc707938d77ce711dd41b297136fd4b16e36 (diff) |
soc/intel/cannonlake: Don't use CAR_GLOBAL
All platforms using this code have NO_CAR_GLOBAL_MIGRATION.
Change-Id: I72effa93e36156ad35b3e45db449d8d0d0cabf06
Signed-off-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-on: https://review.coreboot.org/c/30514
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Diffstat (limited to 'src/mainboard/google/sarien/chromeos.c')
-rw-r--r-- | src/mainboard/google/sarien/chromeos.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/mainboard/google/sarien/chromeos.c b/src/mainboard/google/sarien/chromeos.c index f9e42e0f69..4cd6e16a95 100644 --- a/src/mainboard/google/sarien/chromeos.c +++ b/src/mainboard/google/sarien/chromeos.c @@ -14,7 +14,6 @@ */ #include <arch/acpi.h> -#include <arch/early_variables.h> #include <boot/coreboot_tables.h> #include <gpio.h> #include <soc/gpio.h> @@ -31,7 +30,7 @@ enum rec_mode_state { REC_MODE_NOT_REQUESTED, REC_MODE_REQUESTED, }; -static enum rec_mode_state saved_rec_mode CAR_GLOBAL; +static enum rec_mode_state saved_rec_mode; void fill_lb_gpios(struct lb_gpios *gpios) { @@ -85,7 +84,7 @@ int get_write_protect_state(void) int get_recovery_mode_switch(void) { - enum rec_mode_state state = car_get_var(saved_rec_mode); + enum rec_mode_state state = saved_rec_mode; uint8_t recovery_button_state = 0; /* Check the global variable first. */ @@ -106,7 +105,7 @@ int get_recovery_mode_switch(void) REC_MODE_REQUESTED : REC_MODE_NOT_REQUESTED; /* Store the state in case this is called again in verstage. */ - car_set_var(saved_rec_mode, state); + saved_rec_mode = state; return state == REC_MODE_REQUESTED; } |