Arthur Heymans has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/59802 )
Change subject: drivers/i2c/tpm/Kconfig: Reduce visibility of some configs ......................................................................
drivers/i2c/tpm/Kconfig: Reduce visibility of some configs
I2C bus and address of the TPM are typically fixed on hardware so there is no need to be able to configure this in menuconfig.
Change-Id: I1b6afa68fe753fb76348e0461209d218b14df7cb Signed-off-by: Arthur Heymans arthur@aheymans.xyz --- M src/drivers/i2c/tpm/Kconfig 1 file changed, 2 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/02/59802/1
diff --git a/src/drivers/i2c/tpm/Kconfig b/src/drivers/i2c/tpm/Kconfig index df622f0..dcf9060 100644 --- a/src/drivers/i2c/tpm/Kconfig +++ b/src/drivers/i2c/tpm/Kconfig @@ -31,12 +31,12 @@ default y
config DRIVER_TPM_I2C_BUS - hex "I2C TPM chip bus" + hex default 0x9 # FIXME, workaround for Kconfig BS depends on I2C_TPM
config DRIVER_TPM_I2C_ADDR - hex "I2C TPM chip address" + hex default 0x2 # FIXME, workaround for Kconfig BS depends on I2C_TPM