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

kbuild: drop check for CONFIG_ in headers_check

The check for references to CONFIG_ symbols in exported headers turned
out to be too agressive with the current state of affairs.
After the work of Jaswinder to clean up all relevant cases we are down
to almost pure noise.

So lets drop the check for now - we can always add it back later
should our headers be ready for that.

Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Signed-off-by: Ingo Molnar <mingo@elte.hu>

authored by

Sam Ravnborg and committed by
Ingo Molnar
7e3fa561 7cff3608

+1 -1
+1 -1
scripts/headers_check.pl
··· 38 38 &check_asm_types(); 39 39 &check_sizetypes(); 40 40 &check_prototypes(); 41 - &check_config(); 41 + # Dropped for now. Too much noise &check_config(); 42 42 } 43 43 close FH; 44 44 }