Skip to content

Commit

Permalink
Merge branch 'upstream-fixes' into upstream
Browse files Browse the repository at this point in the history
  • Loading branch information
John W. Linville committed May 26, 2006
2 parents f587fb7 + 4541a5d commit b1141f6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions drivers/net/wireless/arlan-main.c
Original file line number Diff line number Diff line change
Expand Up @@ -1838,7 +1838,7 @@ struct net_device * __init arlan_probe(int unit)
}

#ifdef MODULE
int init_module(void)
int __init init_module(void)
{
int i = 0;

Expand All @@ -1860,7 +1860,7 @@ int init_module(void)
}


void cleanup_module(void)
void __exit cleanup_module(void)
{
int i = 0;
struct net_device *dev;
Expand Down
2 changes: 1 addition & 1 deletion drivers/net/wireless/wavelan.c
Original file line number Diff line number Diff line change
Expand Up @@ -4306,7 +4306,7 @@ struct net_device * __init wavelan_probe(int unit)
* Insertion of the module
* I'm now quite proud of the multi-device support.
*/
int init_module(void)
int __init init_module(void)
{
int ret = -EIO; /* Return error if no cards found */
int i;
Expand Down

0 comments on commit b1141f6

Please sign in to comment.