]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
kernel-doc: handle/strip __init
authorRandy Dunlap <randy.dunlap@oracle.com>
Thu, 19 Jun 2008 23:03:29 +0000 (16:03 -0700)
committerSam Ravnborg <sam@ravnborg.org>
Fri, 25 Jul 2008 20:12:38 +0000 (22:12 +0200)
Handle __init in functions with kernel-doc notation by stripping the
__init away from the output doc.  This is already being done for
"__devinit".  This patch fixes these kernel-doc error/aborts:

Error(linux-next-20080619//drivers/usb/gadget/config.c:132): cannot understand prototype: 'struct usb_descriptor_header **__init usb_copy_descriptors(struct usb_descriptor_header **src) '
Error(linux-next-20080619//drivers/usb/gadget/config.c:182): cannot understand prototype: 'struct usb_endpoint_descriptor *__init usb_find_endpoint(  struct usb_descriptor_header **src,  struct usb_descriptor_header **copy,  struct usb_endpoint_descriptor *match ) '

Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Cc: David Brownell <dbrownell@users.sourceforge.net>
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
scripts/kernel-doc

index 88e3934a8b8c86f6e5962ac64acb36ab7d0c08dd..d8f77e26081c230a3bc489f5c773950cab3b10d3 100755 (executable)
@@ -1643,6 +1643,7 @@ sub dump_function($$) {
     $prototype =~ s/^__always_inline +//;
     $prototype =~ s/^noinline +//;
     $prototype =~ s/__devinit +//;
+    $prototype =~ s/__init +//;
     $prototype =~ s/^#define\s+//; #ak added
     $prototype =~ s/__attribute__\s*\(\([a-z,]*\)\)//;