Commit 7e3fa56141175026136b392fd026d5d07c49720e

Authored by Sam Ravnborg
Committed by Ingo Molnar
1 parent 7cff3608d2

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>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

scripts/headers_check.pl
... ... @@ -38,7 +38,7 @@
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 }