diff options
| author | Mike Frysinger <vapier@gentoo.org> | 2008-12-27 03:23:15 -0500 |
|---|---|---|
| committer | Sam Ravnborg <sam@ravnborg.org> | 2009-01-02 14:43:24 -0500 |
| commit | 4307184f2b9240d0443bdf944c7b9eac044fe67b (patch) | |
| tree | 272536386a223a743c6b48c792651286be43fa52 /scripts | |
| parent | 7e557a2509f9e1477c10295b74e29e4e93fa2392 (diff) | |
kbuild: in headers_install autoconvert asm/inline/volatile to __xxx__
Headers in userspace should be using the __xxx__ form of the asm, inline,
and volatile keywords. Since people like to revert these things without
realizing what's going on, have the headers install step autoconvert these
keywords.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/headers_install.pl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/headers_install.pl b/scripts/headers_install.pl index 7d2b4146e02f..c6ae4052ab43 100644 --- a/scripts/headers_install.pl +++ b/scripts/headers_install.pl | |||
| @@ -36,6 +36,9 @@ foreach my $file (@files) { | |||
| 36 | $line =~ s/\s__attribute_const__\s/ /g; | 36 | $line =~ s/\s__attribute_const__\s/ /g; |
| 37 | $line =~ s/\s__attribute_const__$//g; | 37 | $line =~ s/\s__attribute_const__$//g; |
| 38 | $line =~ s/^#include <linux\/compiler.h>//; | 38 | $line =~ s/^#include <linux\/compiler.h>//; |
| 39 | $line =~ s/(^|\s)(inline)\b/$1__$2__/g; | ||
| 40 | $line =~ s/(^|\s)(asm)\b(\s|[(]|$)/$1__$2__$3/g; | ||
| 41 | $line =~ s/(^|\s|[(])(volatile)\b(\s|[(]|$)/$1__$2__$3/g; | ||
| 39 | printf OUTFILE "%s", $line; | 42 | printf OUTFILE "%s", $line; |
| 40 | } | 43 | } |
| 41 | close OUTFILE; | 44 | close OUTFILE; |
