kbuild: drop check for CONFIG_ in headers_check
authorSam Ravnborg <sam@ravnborg.org>
Fri, 30 Jan 2009 22:56:42 +0000 (23:56 +0100)
committerIngo Molnar <mingo@elte.hu>
Fri, 30 Jan 2009 23:36:15 +0000 (00:36 +0100)
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>
scripts/headers_check.pl

index db30fac3083efd488596577743422adae9b0c6cc..56f90a480899dd7bef86b88725b5668160b5fcad 100644 (file)
@@ -38,7 +38,7 @@ foreach my $file (@files) {
                &check_asm_types();
                &check_sizetypes();
                &check_prototypes();
-               &check_config();
+               # Dropped for now. Too much noise &check_config();
        }
        close FH;
 }