1
0
mirror of https://review.coreboot.org/flashrom.git synced 2025-07-01 14:11:15 +02:00

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>
This commit is contained in:
Edward O'Callaghan
2023-03-06 11:12:37 +11:00
committed by Edward O'Callaghan
parent 40cc15f55d
commit 3ed016f08f
3 changed files with 8 additions and 9 deletions

View File

@ -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);