Kconfig: Update default hex values to start with 0x
Kconfig hex values don't need to be in quotes, and should start with '0x'. If the default value isn't set this way, Kconfig will add the 0x to the start, and the entry can be added unnecessarily to the defconfig since it's "different" than what was set by the default. A check for this has been added to the Kconfig lint tool. Change-Id: I86f37340682771700011b6285e4b4af41b7e9968 Signed-off-by: Martin Roth <martinroth@google.com> Reviewed-on: https://review.coreboot.org/16834 Tested-by: build bot (Jenkins) Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
This commit is contained in:
@ -22,12 +22,12 @@ endchoice
|
||||
|
||||
config DRIVER_TPM_I2C_BUS
|
||||
hex "I2C TPM chip bus"
|
||||
default 9 # FIXME, workaround for Kconfig BS
|
||||
default 0x9 # FIXME, workaround for Kconfig BS
|
||||
depends on I2C_TPM
|
||||
|
||||
config DRIVER_TPM_I2C_ADDR
|
||||
hex "I2C TPM chip address"
|
||||
default 2 # FIXME, workaround for Kconfig BS
|
||||
default 0x2 # FIXME, workaround for Kconfig BS
|
||||
depends on I2C_TPM
|
||||
|
||||
config DRIVER_TPM_I2C_IRQ
|
||||
|
Reference in New Issue
Block a user