diff options
| author | Randy Dunlap <rdunlap@xenotime.net> | 2006-05-25 14:09:21 -0400 |
|---|---|---|
| committer | John W. Linville <linville@tuxdriver.com> | 2006-05-26 16:11:56 -0400 |
| commit | 53072d68cc2deda9f1a8cde864aa9d04f58addd3 (patch) | |
| tree | d548e87c1b86b8ba733cee1bcded1824103c2e78 | |
| parent | 705af309505681f197f81618440954d10f120dc0 (diff) | |
[PATCH] wavelan: fix section mismatch
Fix section mismatch warning:
WARNING: drivers/net/wireless/wavelan.o - Section mismatch: reference to
.init.text: from .text between 'init_module' (at offset 0x371e) and
'cleanup_module'
Signed-off-by: Randy Dunlap <rdunlap@xenotime.net>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
| -rw-r--r-- | drivers/net/wireless/wavelan.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/wavelan.c b/drivers/net/wireless/wavelan.c index ff192e96268a..dade4b903579 100644 --- a/drivers/net/wireless/wavelan.c +++ b/drivers/net/wireless/wavelan.c | |||
| @@ -4306,7 +4306,7 @@ out: | |||
| 4306 | * Insertion of the module | 4306 | * Insertion of the module |
| 4307 | * I'm now quite proud of the multi-device support. | 4307 | * I'm now quite proud of the multi-device support. |
| 4308 | */ | 4308 | */ |
| 4309 | int init_module(void) | 4309 | int __init init_module(void) |
| 4310 | { | 4310 | { |
| 4311 | int ret = -EIO; /* Return error if no cards found */ | 4311 | int ret = -EIO; /* Return error if no cards found */ |
| 4312 | int i; | 4312 | int i; |
