diff options
author | Randy Dunlap <randy.dunlap@oracle.com> | 2007-06-08 16:46:54 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-06-08 20:23:33 -0400 |
commit | 7b4dc1fdb868089ab60c09531d476284b71373e3 (patch) | |
tree | 399019b9d76aeeded7644a33e46bd5707122c559 /drivers/isdn | |
parent | e16f5350d4cf402cffd18898b07c3b72917db192 (diff) |
isdn/diva: fix section mismatch
__exit function is used by both init and exit routines, so it cannot
be marked __init. (from allyesconfig)
WARNING: drivers/built-in.o(.text+0x9b83cf): Section mismatch: reference to .exit.text: (between 'divasfunc_exit' and 'didd_callback')
Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Cc: Karsten Keil <kkeil@suse.de>
Acked-by: Armin Schindler <armin@melware.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/isdn')
-rw-r--r-- | drivers/isdn/hardware/eicon/divasfunc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/isdn/hardware/eicon/divasfunc.c b/drivers/isdn/hardware/eicon/divasfunc.c index 46fc21a3f8ff..d36a4c09e25d 100644 --- a/drivers/isdn/hardware/eicon/divasfunc.c +++ b/drivers/isdn/hardware/eicon/divasfunc.c | |||
@@ -195,7 +195,7 @@ static int DIVA_INIT_FUNCTION connect_didd(void) | |||
195 | /* | 195 | /* |
196 | * disconnect from didd | 196 | * disconnect from didd |
197 | */ | 197 | */ |
198 | static void DIVA_EXIT_FUNCTION disconnect_didd(void) | 198 | static void disconnect_didd(void) |
199 | { | 199 | { |
200 | IDI_SYNC_REQ req; | 200 | IDI_SYNC_REQ req; |
201 | 201 | ||