streamline_config.pl: fix missing variable operator in debug print

Put in the dollar sign for the variable '$config'. That way, the debug
message has more meaning.

Signed-off-by: David Hunter <david.hunter.linux@gmail.com>
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
This commit is contained in:
David Hunter 2024-10-14 10:13:31 -04:00 committed by Masahiro Yamada
parent 4da0f0d0cc
commit f16c8c0818

View File

@ -503,7 +503,7 @@ sub parse_config_selects
# Check if something other than a module selects this config
if (defined($orig_configs{$conf}) && $orig_configs{$conf} ne "m") {
dprint "$conf (non module) selects config, we are good\n";
dprint "$conf (non module) selects $config, we are good\n";
# we are good with this
return;
}