diff options
author | Elyes Haouas <ehaouas@noos.fr> | 2024-08-31 11:04:54 +0200 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2024-10-01 09:18:10 +0000 |
commit | 7a9b072b289e113552d6cb30e57e4a5dd9ca5d72 (patch) | |
tree | be040f45b445089998ca5bd9416cd7ce7c95a66e /src/soc/intel/tigerlake/chip.h | |
parent | 920c0a604560e179b7b1435260e25ec918f0cd74 (diff) |
tree: Use boolean for dptf_enable
Change-Id: Ic6e578199e7e4ca3a014eecb1eb7a4d9d24893b8
Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/84161
Reviewed-by: Frans Hendriks <fhendriks@eltan.com>
Reviewed-by: Eric Lai <ericllai@google.com>
Reviewed-by: Erik van den Bogaert <ebogaert@eltan.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/intel/tigerlake/chip.h')
-rw-r--r-- | src/soc/intel/tigerlake/chip.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/intel/tigerlake/chip.h b/src/soc/intel/tigerlake/chip.h index 630317a645..f0cecb3fa7 100644 --- a/src/soc/intel/tigerlake/chip.h +++ b/src/soc/intel/tigerlake/chip.h @@ -149,7 +149,7 @@ struct soc_intel_tigerlake_config { uint8_t TcssD3HotDisable; /* Enable DPTF support */ - int dptf_enable; + bool dptf_enable; /* Deep SX enable for both AC and DC */ int deep_s3_enable_ac; |