Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932205AbWJIDH3 (ORCPT ); Sun, 8 Oct 2006 23:07:29 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S932212AbWJIDH3 (ORCPT ); Sun, 8 Oct 2006 23:07:29 -0400 Received: from xenotime.net ([66.160.160.81]:29623 "HELO xenotime.net") by vger.kernel.org with SMTP id S932207AbWJIDH1 (ORCPT ); Sun, 8 Oct 2006 23:07:27 -0400 Date: Sun, 8 Oct 2006 20:08:51 -0700 From: Randy Dunlap To: lkml Cc: akpm Subject: [PATCH] kernel-doc: drop __must_check and various "inline" qualifiers Message-Id: <20061008200851.47eb99da.rdunlap@xenotime.net> Organization: YPO4 X-Mailer: Sylpheed version 2.2.9 (GTK+ 2.8.10; x86_64-unknown-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1079 Lines: 32 From: Randy Dunlap Drop __inline, __always_inline, noinline, and __must_check in the produced kernel-doc output, similar to other pseudo directives. Signed-off-by: Randy Dunlap --- scripts/kernel-doc | 4 ++++ 1 files changed, 4 insertions(+) --- linux-2619-rc1g3.orig/scripts/kernel-doc +++ linux-2619-rc1g3/scripts/kernel-doc @@ -1518,7 +1518,11 @@ sub dump_function($$) { $prototype =~ s/^asmlinkage +//; $prototype =~ s/^inline +//; $prototype =~ s/^__inline__ +//; + $prototype =~ s/^__inline +//; + $prototype =~ s/^__always_inline +//; + $prototype =~ s/^noinline +//; $prototype =~ s/__devinit +//; + $prototype =~ s/__must_check +//; $prototype =~ s/^#define +//; #ak added $prototype =~ s/__attribute__ \(\([a-z,]*\)\)//; --- - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/