diff options
author | Edward O'Callaghan <quasisec@google.com> | 2023-03-06 11:12:37 +1100 |
---|---|---|
committer | Edward O'Callaghan <quasisec@chromium.org> | 2023-04-02 01:01:28 +0000 |
commit | 3ed016f08faa011736443f3b39bf68187d974781 (patch) | |
tree | 2463d5cb64803d97e3783a49add5b9c33c253c18 /include | |
parent | 40cc15f55db5bf68c38be5a5cb695c38e75ffb37 (diff) | |
download | flashrom-3ed016f08faa011736443f3b39bf68187d974781.tar.gz flashrom-3ed016f08faa011736443f3b39bf68187d974781.tar.bz2 flashrom-3ed016f08faa011736443f3b39bf68187d974781.zip |
internal: Move is_laptop into board_cfg
Change-Id: I24e38e4457299934acdcd70325d0bf0f4b139e5f
Signed-off-by: Edward O'Callaghan <quasisec@google.com>
Reviewed-on: https://review.coreboot.org/c/flashrom/+/73455
Reviewed-by: Sam McNally <sammc@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/programmer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/programmer.h b/include/programmer.h index 047f49a5..157de2e2 100644 --- a/include/programmer.h +++ b/include/programmer.h @@ -161,6 +161,7 @@ enum board_match_phase { }; struct board_cfg { + int is_laptop; }; struct board_match { @@ -266,7 +267,6 @@ extern int superio_count; #endif #if CONFIG_INTERNAL == 1 -extern int g_is_laptop; extern bool g_laptop_ok; extern bool force_boardmismatch; void probe_superio(void); |