google/gale: Remove #ifdef of Kconfig bool symbol
Kconfig symbols of type bool are ALWAYS defined, so this code was always being included and run, which isn't what the author wanted. Change to use IS_ENABLED(), and a regular if() instead of an #ifdef. Change-Id: I72623fa27e47980c602135f4b73f371c7f50139b Signed-off-by: Martin Roth <martinroth@google.com> Reviewed-on: https://review.coreboot.org/16837 Tested-by: build bot (Jenkins) Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
This commit is contained in:
parent
8bc8be4d0e
commit
6d6c00a502
|
@ -24,7 +24,7 @@
|
||||||
static void ipq_setup_tpm(void)
|
static void ipq_setup_tpm(void)
|
||||||
{
|
{
|
||||||
|
|
||||||
#ifdef CONFIG_I2C_TPM
|
if (IS_ENABLED(CONFIG_I2C_TPM)) {
|
||||||
gpio_tlmm_config_set(TPM_RESET_GPIO, FUNC_SEL_GPIO,
|
gpio_tlmm_config_set(TPM_RESET_GPIO, FUNC_SEL_GPIO,
|
||||||
GPIO_PULL_UP, GPIO_6MA, 1);
|
GPIO_PULL_UP, GPIO_6MA, 1);
|
||||||
gpio_set(TPM_RESET_GPIO, 0);
|
gpio_set(TPM_RESET_GPIO, 0);
|
||||||
|
@ -50,8 +50,7 @@ static void ipq_setup_tpm(void)
|
||||||
* to the TPM either fail or timeout.
|
* to the TPM either fail or timeout.
|
||||||
*/
|
*/
|
||||||
mdelay(30);
|
mdelay(30);
|
||||||
|
}
|
||||||
#endif /* CONFIG_I2C_TPM */
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void verstage_mainboard_init(void)
|
void verstage_mainboard_init(void)
|
||||||
|
|
Loading…
Reference in New Issue