Merge branch 'upstream-fixes' into upstream

This commit is contained in:
John W. Linville 2006-05-26 16:12:24 -04:00
Родитель f587fb74b2 4541a5db0b
Коммит b1141f6d5d
2 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -1838,7 +1838,7 @@ struct net_device * __init arlan_probe(int unit)
} }
#ifdef MODULE #ifdef MODULE
int init_module(void) int __init init_module(void)
{ {
int i = 0; int i = 0;
@ -1860,7 +1860,7 @@ int init_module(void)
} }
void cleanup_module(void) void __exit cleanup_module(void)
{ {
int i = 0; int i = 0;
struct net_device *dev; struct net_device *dev;

Просмотреть файл

@ -4306,7 +4306,7 @@ out:
* Insertion of the module * Insertion of the module
* I'm now quite proud of the multi-device support. * 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 ret = -EIO; /* Return error if no cards found */
int i; int i;