From: Jean Delvare <khali@linux-fr.org>
To: Andrew Morton <akpm@osdl.org>
Cc: LKML <linux-kernel@vger.kernel.org>, Yoichi Yuasa <yuasa@hh.iij4u.or.jp>
Subject: [PATCH] vr41xx: section tags fix
Date: Sat, 7 Jan 2006 23:03:28 +0100 [thread overview]
Message-ID: <20060107230328.1ce0da37.khali@linux-fr.org> (raw)
Hi Andrew,
Can you please pick this patch for -mm? I sent it to Yoichi Yuasa one
month ago but didn't get any answer. Thanks.
Content-Disposition: inline; filename=vr41xx-section-tags-fix.patch
module_init functions must be tagged __init rather than __devinit;
likewise, module_exit functions must be tagged __exit rather than
__devexit.
Signed-off-by: Jean Delvare <khali@linux-fr.org>
---
drivers/char/vr41xx_giu.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
--- linux-2.6.15-rc5.orig/drivers/char/vr41xx_giu.c 2005-11-12 15:49:50.000000000 +0100
+++ linux-2.6.15-rc5/drivers/char/vr41xx_giu.c 2005-12-11 17:12:58.000000000 +0100
@@ -718,7 +718,7 @@
},
};
-static int __devinit vr41xx_giu_init(void)
+static int __init vr41xx_giu_init(void)
{
int retval;
@@ -733,7 +733,7 @@
return retval;
}
-static void __devexit vr41xx_giu_exit(void)
+static void __exit vr41xx_giu_exit(void)
{
platform_driver_unregister(&giu_device_driver);
--
Jean Delvare
reply other threads:[~2006-01-07 22:03 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20060107230328.1ce0da37.khali@linux-fr.org \
--to=khali@linux-fr.org \
--cc=akpm@osdl.org \
--cc=linux-kernel@vger.kernel.org \
--cc=yuasa@hh.iij4u.or.jp \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome