summaryrefslogtreecommitdiff
path: root/util
diff options
context:
space:
mode:
authorNico Huber <nico.h@gmx.de>2021-04-02 21:21:00 +0200
committerPatrick Georgi <pgeorgi@google.com>2021-04-06 06:51:40 +0000
commit56d51b69cab5b9bfa27ce471ef4ee4ded1e61799 (patch)
treeaa254cfcf6a0865530136390a9711eaa781eb44f /util
parentc48784069f53bfcf0c8f17a934076ad9a022cc4c (diff)
downloadcoreboot-56d51b69cab5b9bfa27ce471ef4ee4ded1e61799.tar.xz
util/kconfig_lint: Drop exception for paths without quotes
The tree is clean at the moment. Change-Id: I1be3b6c2f3b54b5c10ad3d5c6f0a6fd7e490c6bc Signed-off-by: Nico Huber <nico.h@gmx.de> Reviewed-on: https://review.coreboot.org/c/coreboot/+/52066 Reviewed-by: Angel Pons <th3fanbus@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'util')
-rwxr-xr-xutil/lint/kconfig_lint5
1 files changed, 0 insertions, 5 deletions
diff --git a/util/lint/kconfig_lint b/util/lint/kconfig_lint
index 2341976b41..43a3ca684e 100755
--- a/util/lint/kconfig_lint
+++ b/util/lint/kconfig_lint
@@ -993,11 +993,6 @@ sub handle_expressions {
handle_expressions( $1, $inside_config, $filename, $line_no );
handle_expressions( $2, $inside_config, $filename, $line_no );
}
-
- # work around kconfig spec violation for now - paths not in quotes
- elsif ( $exprline =~ /^\s*([A-Za-z0-9_\-\/]+)\s*$/ ) { # <symbol> (1)
- return;
- }
else {
show_error("Unrecognized expression '$exprline' in $filename line $line_no.");
}