diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2006-06-15 20:23:19 +0200 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2006-12-04 22:07:21 +0100 |
commit | bffa2154956da31f59c6050f176fadba630ff53a (patch) | |
tree | 23853ddee39c2fe0b8ce02601ce0e8c82a9e61be /drivers/net/arm/ether1.c | |
parent | [PATCH] trivial missing __init in drivers/net/* (diff) | |
download | linux-bffa2154956da31f59c6050f176fadba630ff53a.tar.xz linux-bffa2154956da31f59c6050f176fadba630ff53a.zip |
[PATCH] drivers/net/arm missing __devinit
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'drivers/net/arm/ether1.c')
-rw-r--r-- | drivers/net/arm/ether1.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/net/arm/ether1.c b/drivers/net/arm/ether1.c index f3478a30e778..d6da3ce9ad79 100644 --- a/drivers/net/arm/ether1.c +++ b/drivers/net/arm/ether1.c @@ -254,7 +254,7 @@ ether1_readbuffer (struct net_device *dev, void *data, unsigned int start, unsig } while (thislen); } -static int __init +static int __devinit ether1_ramtest(struct net_device *dev, unsigned char byte) { unsigned char *buffer = kmalloc (BUFFER_SIZE, GFP_KERNEL); @@ -308,7 +308,7 @@ ether1_reset (struct net_device *dev) return BUS_16; } -static int __init +static int __devinit ether1_init_2(struct net_device *dev) { int i; @@ -986,7 +986,7 @@ ether1_setmulticastlist (struct net_device *dev) /* ------------------------------------------------------------------------- */ -static void __init ether1_banner(void) +static void __devinit ether1_banner(void) { static unsigned int version_printed = 0; |