[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <f68151390803082256i2bc7cd77x86d21aa915af8bfe@mail.gmail.com>
Date: Sun, 9 Mar 2008 00:56:25 -0600
From: "Jon Schindler" <jkschind@...il.com>
To: "Kok, Auke" <auke-jan.h.kok@...el.com>
Cc: jeff@...zik.org, akpm@...ux-foundation.org, netdev@...r.kernel.org,
alan@...rguk.ukuu.org.uk
Subject: Re: [patch 16/17] drivers/net/8390.c: replace init_module&cleanup_module with module_init&module_exit
Hi,
I actually ended up doing a resubmit, but forgot to send it to Jeff.
I'll send it in the next email.
Jon
On Fri, Mar 7, 2008 at 6:00 PM, Kok, Auke <auke-jan.h.kok@...el.com> wrote:
> akpm@...ux-foundation.org wrote:
> > From: Jon Schindler <jkschind@...il.com>
> >
> > Replace init_module and cleanup_module with static functions and
> > module_init/module_exit.
> >
> > Signed-off-by: Jon Schindler <jkschind@...il.com>
> > Cc: Alan Cox <alan@...rguk.ukuu.org.uk>
> > Signed-off-by: Andrew Morton <akpm@...ux-foundation.org>
>
> something went wrong here as this patch already appears to be in jeff's upstream
> tree as commit 8724c2de65fe527f5b7aa662fcb8573fb8cd02f2, but breaks compile.
>
> with CONFIG_NE2K_PCI=m:
>
> CC [M] drivers/net/8390.o
> drivers/net/8390.c: In function '__inittest':
> drivers/net/8390.c:60: error: 'ns8390_init_module' undeclared (first use in this
> function)
> drivers/net/8390.c:60: error: (Each undeclared identifier is reported only once
> drivers/net/8390.c:60: error: for each function it appears in.)
> make[2]: *** [drivers/net/8390.o] Error 1
> make[1]: *** [drivers/net] Error 2
> make: *** [drivers] Error 2
>
>
> reverting the patch fixes the issue, but better would be to fix.
>
> Signed-off-by: Auke Kok <auke-jan.h.kok@...el.com>
> Cc: Jon Schindler <jkschind@...il.com>
>
> Cc: Alan Cox <alan@...rguk.ukuu.org.uk>
> Cc: Andrew Morton <akpm@...ux-foundation.org>
>
> ---
> diff --git a/drivers/net/8390.c b/drivers/net/8390.c
> index 0ed41a3..a499e86 100644
>
> --- a/drivers/net/8390.c
> +++ b/drivers/net/8390.c
> @@ -57,7 +57,7 @@ static void __exit ns8390_module_exit(void)
> {
> }
>
> -module_init(ns8390_init_module);
>
>
> +module_init(ns8390_module_init);
> module_exit(ns8390_module_exit);
> #endif /* MODULE */
> MODULE_LICENSE("GPL");
>
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists