diff options
author | Andrew Morton <akpm@osdl.org> | 2006-06-25 08:47:32 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-06-25 13:01:04 -0400 |
commit | a2926b1449bcc3d348e2228114b04869dc2f3986 (patch) | |
tree | 175f542cced7975960cc313b375d64b27d622560 | |
parent | 138bb68ac9d49b0ea7eeecb3a245dc4e20f181da (diff) |
[PATCH] msnd section fix
WARNING: sound/oss/msnd.o - Section mismatch: reference to .init.text:msnd_register from __ksymtab between '__ksymtab_msnd_register' (at offset 0x0) and '__ksymtab_msnd_unregister'
This symbol is exported. It'll oops if the driver is nonmodular and the
caller is modular.
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-rw-r--r-- | sound/oss/msnd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/oss/msnd.c b/sound/oss/msnd.c index 5dbfc0f9c3c7..ba38d6200099 100644 --- a/sound/oss/msnd.c +++ b/sound/oss/msnd.c | |||
@@ -47,7 +47,7 @@ | |||
47 | static multisound_dev_t *devs[MSND_MAX_DEVS]; | 47 | static multisound_dev_t *devs[MSND_MAX_DEVS]; |
48 | static int num_devs; | 48 | static int num_devs; |
49 | 49 | ||
50 | int __init msnd_register(multisound_dev_t *dev) | 50 | int msnd_register(multisound_dev_t *dev) |
51 | { | 51 | { |
52 | int i; | 52 | int i; |
53 | 53 | ||