Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 27431
b: refs/heads/master
c: 96e672c
h: refs/heads/master
i:
  27429: 2fd0450
  27427: 6b5077b
  27423: 8aa2e00
v: v3
  • Loading branch information
Randy Dunlap authored and Jeff Garzik committed Jun 11, 2006
1 parent cc9f605 commit 5d855cf
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: a2bd2ec8d1bef7479d26d375162963106757e8e9
refs/heads/master: 96e672c79fb114ec38a868dc864e743205c24332
2 changes: 1 addition & 1 deletion trunk/drivers/net/3c501.c
Original file line number Diff line number Diff line change
Expand Up @@ -909,7 +909,7 @@ MODULE_PARM_DESC(irq, "EtherLink IRQ number");
* here also causes the module to be unloaded
*/

int init_module(void)
int __init init_module(void)
{
dev_3c501 = el1_probe(-1);
if (IS_ERR(dev_3c501))
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/net/3c503.c
Original file line number Diff line number Diff line change
Expand Up @@ -688,7 +688,7 @@ MODULE_LICENSE("GPL");

/* This is set up so that only a single autoprobe takes place per call.
ISA device autoprobes on a running machine are not recommended. */
int
int __init
init_module(void)
{
struct net_device *dev;
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/net/3c505.c
Original file line number Diff line number Diff line change
Expand Up @@ -1633,7 +1633,7 @@ MODULE_PARM_DESC(io, "EtherLink Plus I/O base address(es)");
MODULE_PARM_DESC(irq, "EtherLink Plus IRQ number(s) (assigned)");
MODULE_PARM_DESC(dma, "EtherLink Plus DMA channel(s)");

int init_module(void)
int __init init_module(void)
{
int this_dev, found = 0;

Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/net/3c507.c
Original file line number Diff line number Diff line change
Expand Up @@ -932,7 +932,7 @@ module_param(irq, int, 0);
MODULE_PARM_DESC(io, "EtherLink16 I/O base address");
MODULE_PARM_DESC(irq, "(ignored)");

int init_module(void)
int __init init_module(void)
{
if (io == 0)
printk("3c507: You should not use auto-probing with insmod!\n");
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/net/3c523.c
Original file line number Diff line number Diff line change
Expand Up @@ -1277,7 +1277,7 @@ MODULE_PARM_DESC(io, "EtherLink/MC I/O base address(es)");
MODULE_PARM_DESC(irq, "EtherLink/MC IRQ number(s)");
MODULE_LICENSE("GPL");

int init_module(void)
int __init init_module(void)
{
int this_dev,found = 0;

Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/net/3c527.c
Original file line number Diff line number Diff line change
Expand Up @@ -1646,7 +1646,7 @@ static struct net_device *this_device;
* insmod multiple modules for now but it's a hack.
*/

int init_module(void)
int __init init_module(void)
{
this_device = mc32_probe(-1);
if (IS_ERR(this_device))
Expand Down

0 comments on commit 5d855cf

Please sign in to comment.