linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 2/9] /drivers/net/8390.c replaced init_module&cleanup_module with module_init&module_exit
@ 2008-02-28  7:30 Jon Schindler
  2008-03-01  1:24 ` Andrew Morton
  0 siblings, 1 reply; 4+ messages in thread
From: Jon Schindler @ 2008-02-28  7:30 UTC (permalink / raw)
  To: linux-kernel, trivial, kernel-janitors

Replaced init_module and cleanup_module with static functions and module_init/module_exit.

Signed-off-by: Jon Schindler <jkschind@gmail.com>
---
diff --git a/drivers/net/ac3200.c b/drivers/net/ac3200.c
index 5136d94..b144863 100644
--- a/drivers/net/ac3200.c
+++ b/drivers/net/ac3200.c
@@ -369,7 +369,7 @@ MODULE_PARM_DESC(mem, "Memory base address(es)");
 MODULE_DESCRIPTION("Ansel AC3200 EISA ethernet driver");
 MODULE_LICENSE("GPL");
 
-int __init init_module(void)
+static int __init ac3200_module_init(void)
 {
 	struct net_device *dev;
 	int this_dev, found = 0;
@@ -404,8 +404,7 @@ static void cleanup_card(struct net_device *dev)
 	iounmap(ei_status.mem);
 }
 
-void __exit
-cleanup_module(void)
+static void __exit ac3200_module_exit(void)
 {
 	int this_dev;
 
@@ -418,4 +417,6 @@ cleanup_module(void)
 		}
 	}
 }
+module_init(ac3200_module_init);
+module_exit(ac3200_module_exit);
 #endif /* MODULE */

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH 2/9] /drivers/net/8390.c replaced init_module&cleanup_module with module_init&module_exit
  2008-02-28  7:30 [PATCH 2/9] /drivers/net/8390.c replaced init_module&cleanup_module with module_init&module_exit Jon Schindler
@ 2008-03-01  1:24 ` Andrew Morton
  2008-03-01  2:32   ` Jon Schindler
  0 siblings, 1 reply; 4+ messages in thread
From: Andrew Morton @ 2008-03-01  1:24 UTC (permalink / raw)
  To: Jon Schindler; +Cc: linux-kernel, trivial, kernel-janitors

On Thu, 28 Feb 2008 01:30:25 -0600
Jon Schindler <jkschind@gmail.com> wrote:

> Replaced init_module and cleanup_module with static functions and module_init/module_exit.

I get

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.)
drivers/net/8390.c: At top level:
drivers/net/8390.c:60: error: 'init_module' aliased to undefined symbol 'ns8390_init_module'



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH 2/9] /drivers/net/8390.c replaced init_module&cleanup_module with module_init&module_exit
  2008-03-01  1:24 ` Andrew Morton
@ 2008-03-01  2:32   ` Jon Schindler
  2008-03-01  2:46     ` Jon Schindler
  0 siblings, 1 reply; 4+ messages in thread
From: Jon Schindler @ 2008-03-01  2:32 UTC (permalink / raw)
  To: Andrew Morton; +Cc: linux-kernel, trivial, kernel-janitors

I'm sorry, ns8390_init_module should be ns8390_module_init.  I'll resend it in the next reply.
Andrew Morton wrote:
> On Thu, 28 Feb 2008 01:30:25 -0600
> Jon Schindler <jkschind@gmail.com> wrote:
> 
>> Replaced init_module and cleanup_module with static functions and module_init/module_exit.
> 
> I get
> 
> 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.)
> drivers/net/8390.c: At top level:
> drivers/net/8390.c:60: error: 'init_module' aliased to undefined symbol 'ns8390_init_module'
> 
> 


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH 2/9] /drivers/net/8390.c replaced init_module&cleanup_module with module_init&module_exit
  2008-03-01  2:32   ` Jon Schindler
@ 2008-03-01  2:46     ` Jon Schindler
  0 siblings, 0 replies; 4+ messages in thread
From: Jon Schindler @ 2008-03-01  2:46 UTC (permalink / raw)
  To: Andrew Morton; +Cc: linux-kernel, trivial, kernel-janitors

I've also noticed another issue, it appears that I accidentally gave PATCH 2/9 the wrong subject.  Patch 2/9
actually fixes /drivers/net/ac3200.c, while PATCH 1/9 is the one that fixes /drivers/net/8390.c.  
What's the easiest way to fix these two patches?  Do you want to just back out patches 1 & 2 and 
I can send them as part of a different patch set?  If I change the subject for PATCH 2/9, it might
be hard for others to follow this thread.

Sorry for the trouble, I'm still getting familiar the mechanics of patch submission.

Jon
Jon Schindler wrote:
> I'm sorry, ns8390_init_module should be ns8390_module_init.  I'll resend it in the next reply.
> Andrew Morton wrote:
>> On Thu, 28 Feb 2008 01:30:25 -0600
>> Jon Schindler <jkschind@gmail.com> wrote:
>>
>>> Replaced init_module and cleanup_module with static functions and module_init/module_exit.
>> I get
>>
>> 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.)
>> drivers/net/8390.c: At top level:
>> drivers/net/8390.c:60: error: 'init_module' aliased to undefined symbol 'ns8390_init_module'
>>
>>
> 


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2008-03-01  2:50 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-02-28  7:30 [PATCH 2/9] /drivers/net/8390.c replaced init_module&cleanup_module with module_init&module_exit Jon Schindler
2008-03-01  1:24 ` Andrew Morton
2008-03-01  2:32   ` Jon Schindler
2008-03-01  2:46     ` Jon Schindler

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).