summaryrefslogtreecommitdiffstats
path: root/util/lint/kconfig_lint_README
diff options
context:
space:
mode:
authorMartin Roth <martinroth@google.com>2016-11-09 14:27:00 -0700
committerMartin Roth <martinroth@google.com>2016-12-12 18:07:51 +0100
commit08705f1e904288607df87eb7627178613066bd99 (patch)
tree9623c79fd393d600127c42fae79c2b4e5b9c52c8 /util/lint/kconfig_lint_README
parent1c9c4b8db8ee791d124638b7381e85bf4298f0f5 (diff)
downloadcoreboot-08705f1e904288607df87eb7627178613066bd99.tar.gz
coreboot-08705f1e904288607df87eb7627178613066bd99.tar.bz2
coreboot-08705f1e904288607df87eb7627178613066bd99.zip
lint/kconfig_lint: Make sure all symbols have a type defined
Show an error if a symbol does not have a defined type. This caused a problem of an undefined symbol in check_defaults, so we just skip those symbols there as we can't verify the default pattern without knowing the type. Change-Id: I28711a77962e16f6fc89789400363edd0fdd0931 Signed-off-by: Martin Roth <martinroth@google.com> Reviewed-on: https://review.coreboot.org/17345 Tested-by: build bot (Jenkins) Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Philipp Deppenwiese <zaolin.daisuki@googlemail.com> Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'util/lint/kconfig_lint_README')
-rw-r--r--util/lint/kconfig_lint_README1
1 files changed, 1 insertions, 0 deletions
diff --git a/util/lint/kconfig_lint_README b/util/lint/kconfig_lint_README
index 5a5eacdb8894..c36320edb22e 100644
--- a/util/lint/kconfig_lint_README
+++ b/util/lint/kconfig_lint_README
@@ -89,6 +89,7 @@ Errors in Kconfig that are also caught by Kconfig itself:
int in another location.
- Type keywords (bool, int, hex, string) used outside of a config block.
- Using a 'prompt' keyword not inside a config or choice block.
+- Symbols with no defined type.
Errors in coreboot source files:
- The IS_ENABLED macro is only valid for bool symbols.