diff options
Diffstat (limited to 'util')
-rwxr-xr-x | util/lint/kconfig_lint | 5 |
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."); } |