diff options
| author | Harvey Harrison <[email protected]> | 2008-02-14 19:31:23 -0800 |
|---|---|---|
| committer | Linus Torvalds <[email protected]> | 2008-02-14 20:58:04 -0800 |
| commit | 34ff8a52fa7ebb7be036534295f7b252d39e3439 (patch) | |
| tree | 72e8874695f4bb83abe0be57ef981d76fef683d2 /scripts/kernel-doc | |
| parent | 77a746cec58801208818ee19115da0e4d41f9002 (diff) | |
kernel-doc: remove fastcall
fastcall is gone from the tree, no need to adjust the function prototypes
anymore for this.
Signed-off-by: Harvey Harrison <[email protected]>
Acked-by: Randy Dunlap <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
Diffstat (limited to 'scripts/kernel-doc')
| -rwxr-xr-x | scripts/kernel-doc | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/scripts/kernel-doc b/scripts/kernel-doc index 6c18a14386a4..26146cbaa504 100755 --- a/scripts/kernel-doc +++ b/scripts/kernel-doc @@ -1624,7 +1624,6 @@ sub dump_function($$) { $prototype =~ s/^static +//; $prototype =~ s/^extern +//; - $prototype =~ s/^fastcall +//; $prototype =~ s/^asmlinkage +//; $prototype =~ s/^inline +//; $prototype =~ s/^__inline__ +//; |