From: Benjamin Herrenschmidt Date: Thu, 27 Mar 2008 03:52:15 +0000 (+1100) Subject: Give futex init a proper name X-Git-Tag: v2.6.25-rc8~76 X-Git-Url: http://www.pilppa.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=f6d107fb10def502522b10bfb7af9533afbb8274;p=linux-2.6-omap-h63xx.git Give futex init a proper name The futex init function is called init(). This is a pain in the neck when debugging when you code dies in ... init :-) This renames it to futex_init(). Signed-off-by: Benjamin Herrenschmidt Signed-off-by: Linus Torvalds --- diff --git a/kernel/futex.c b/kernel/futex.c index 06968cd7920..87a6428cb5b 100644 --- a/kernel/futex.c +++ b/kernel/futex.c @@ -2158,7 +2158,7 @@ static struct file_system_type futex_fs_type = { .kill_sb = kill_anon_super, }; -static int __init init(void) +static int __init futex_init(void) { u32 curval; int i; @@ -2194,4 +2194,4 @@ static int __init init(void) return 0; } -__initcall(init); +__initcall(futex_init);