diff options
author | Elyes Haouas <ehaouas@noos.fr> | 2024-08-31 10:13:47 +0200 |
---|---|---|
committer | Elyes Haouas <ehaouas@noos.fr> | 2024-09-04 01:17:08 +0000 |
commit | f344afb670adfa7b24ec28e788972be1aeefa90e (patch) | |
tree | c79e2bd1e08c678d4bc7f5577f3241ac7533a20c /src/soc | |
parent | 2f8b77b76bdbb6e93f1a9ca3c73f9bb38ec55b41 (diff) |
tree: Use boolean for skip_ext_gfx_scan
Change-Id: I569b9a69add341bcefe6bd5356b01a95a4e97286
Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/84154
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Jakub Czapiga <czapiga@google.com>
Diffstat (limited to 'src/soc')
-rw-r--r-- | src/soc/intel/pantherlake/chip.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/intel/pantherlake/chip.h b/src/soc/intel/pantherlake/chip.h index 589ce14eed..d1dbe444e4 100644 --- a/src/soc/intel/pantherlake/chip.h +++ b/src/soc/intel/pantherlake/chip.h @@ -179,7 +179,7 @@ struct soc_intel_pantherlake_config { IGD_SM_56MB = 0xFD, IGD_SM_60MB = 0xFE, } IgdDvmt50PreAlloc; - uint8_t skip_ext_gfx_scan; + bool skip_ext_gfx_scan; /* CNVi WiFi Core Enable/Disable */ bool cnvi_wifi_core; |