From: David Hunter Date: Mon, 14 Oct 2024 14:13:31 +0000 (-0400) Subject: streamline_config.pl: fix missing variable operator in debug print X-Git-Tag: v6.13-rc1~16^2~73 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=f16c8c08185420092d04edce6066eaf4a454bb20;p=linux-block.git 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 Signed-off-by: Masahiro Yamada --- diff --git a/scripts/kconfig/streamline_config.pl b/scripts/kconfig/streamline_config.pl index d51cd7ac15d2..a85d6a3108a1 100755 --- a/scripts/kconfig/streamline_config.pl +++ b/scripts/kconfig/streamline_config.pl @@ -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; }