diff options
author | Martin Roth <martinroth@google.com> | 2016-09-30 14:43:01 -0600 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2016-10-02 19:08:15 +0200 |
commit | 3b87812f004f1b510e36e2fb6a25b54181954190 (patch) | |
tree | e7a96357425496d4fdaf8b8414173748e8dc18a1 /src/Kconfig | |
parent | cc3365a0398d02dc2e88c3caf969c0b874d6a3dc (diff) | |
download | coreboot-3b87812f004f1b510e36e2fb6a25b54181954190.tar.xz |
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>
Diffstat (limited to 'src/Kconfig')
-rw-r--r-- | src/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Kconfig b/src/Kconfig index f6c022e8be..91b27ceef5 100644 --- a/src/Kconfig +++ b/src/Kconfig @@ -634,7 +634,7 @@ config IOAPIC config CACHE_ROM_SIZE_OVERRIDE hex - default 0 + default 0x0 # TODO: Can probably be removed once all chipsets have kconfig options for it. config VIDEO_MB |