diff options
author | Martin Roth <martinroth@google.com> | 2016-09-29 15:10:37 -0600 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2016-09-30 23:57:12 +0200 |
commit | 80fa9d899c2dacf3b842b8a8cae28352bb874e62 (patch) | |
tree | 31136d871d9228430d896ef4f27878e4be861096 /src/mainboard/google | |
parent | 311fb696cfa6644ca82dca3e1ea825401779db51 (diff) | |
download | coreboot-80fa9d899c2dacf3b842b8a8cae28352bb874e62.tar.xz |
google/reef: Fix default values in Kconfig
These default values weren't being set with the default
keyword so were ending up with different values.
from the default generated config file before this change:
CONFIG_DRIVER_TPM_I2C_BUS=0x9
CONFIG_DRIVER_TPM_I2C_ADDR=0x2
CONFIG_DRIVER_TPM_I2C_IRQ=-1
Change-Id: I19514d0c9b2a9b7e479f003a4d3384e073f4d531
Signed-off-by: Martin Roth <martinroth@google.com>
Reviewed-on: https://review.coreboot.org/16828
Reviewed-by: Duncan Laurie <dlaurie@chromium.org>
Tested-by: build bot (Jenkins)
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Diffstat (limited to 'src/mainboard/google')
-rw-r--r-- | src/mainboard/google/reef/Kconfig | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/mainboard/google/reef/Kconfig b/src/mainboard/google/reef/Kconfig index 5039725727..bd3f466bbc 100644 --- a/src/mainboard/google/reef/Kconfig +++ b/src/mainboard/google/reef/Kconfig @@ -20,13 +20,16 @@ config BASEBOARD_REEF_LAPTOP select SYSTEM_TYPE_LAPTOP config DRIVER_TPM_I2C_BUS - hex "0x2" + hex + default 0x2 config DRIVER_TPM_I2C_ADDR - hex "0x50" + hex + default 0x50 config DRIVER_TPM_I2C_IRQ - int "60" # GPE0_DW1_28 + int + default 60 # GPE0_DW1_28 config CHROMEOS select LID_SWITCH if BASEBOARD_REEF_LAPTOP |