Lines Matching refs:CONFIG_
76 my ${CONFIG_} = "CONFIG_";
145 ${CONFIG_})
350 'kconfig-prefix=s' => \${CONFIG_},
7375 # check for IS_ENABLED() without CONFIG_<FOO> ($rawline for comments too)
7376 if ($rawline =~ /\bIS_ENABLED\s*\(\s*(\w+)\s*\)/ && $1 !~ /^${CONFIG_}/) {
7378 "IS_ENABLED($1) is normally used as IS_ENABLED(${CONFIG_}$1)\n" . $herecurr);
7381 # check for #if defined CONFIG_<FOO> || defined CONFIG_<FOO>_MODULE
7382 if ($line =~ /^\+\s*#\s*if\s+defined(?:\s*\(?\s*|\s+)(${CONFIG_}[A-Z_]+)\s*\)?\s*\|\|\s*defined(?:\s*\(?\s*|\s+)\1_MODULE\s*\)?\s*$/) {
7385 "Prefer IS_ENABLED(<FOO>) to ${CONFIG_}<FOO> || ${CONFIG_}<FOO>_MODULE\n" . $herecurr) &&