Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

David Hunter and committed by
Masahiro Yamada
f16c8c08 4da0f0d0

+1 -1
+1 -1
scripts/kconfig/streamline_config.pl
··· 503 503 504 504 # Check if something other than a module selects this config 505 505 if (defined($orig_configs{$conf}) && $orig_configs{$conf} ne "m") { 506 - dprint "$conf (non module) selects config, we are good\n"; 506 + dprint "$conf (non module) selects $config, we are good\n"; 507 507 # we are good with this 508 508 return; 509 509 }