summaryrefslogtreecommitdiff
path: root/scripts/headers_check.pl
diff options
context:
space:
mode:
authorSam Ravnborg <sam@ravnborg.org>2009-01-30 23:56:42 +0100
committerIngo Molnar <mingo@elte.hu>2009-01-31 00:36:15 +0100
commit7e3fa56141175026136b392fd026d5d07c49720e (patch)
treec93f835bdeeee205fa764bbfdb31bc8cd35c786b /scripts/headers_check.pl
parent7cff3608d2553a045b676fa81b0cf54e4f2cc5ce (diff)
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>
Diffstat (limited to 'scripts/headers_check.pl')
-rw-r--r--scripts/headers_check.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/headers_check.pl b/scripts/headers_check.pl
index db30fac3083e..56f90a480899 100644
--- a/scripts/headers_check.pl
+++ b/scripts/headers_check.pl
@@ -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;
}