diff options
author | Randy Dunlap <rdunlap@xenotime.net> | 2006-06-28 07:26:56 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-06-28 17:59:06 -0400 |
commit | e85f8dcc2750685e50139df4da8bdb68475393fc (patch) | |
tree | 2da11db3037d8d05ea119f09af559cafa5486ef4 /sound | |
parent | cab267c65f44337974e4f1eae490b21dce0e9811 (diff) |
[PATCH] sound: fix cs4232 section mismatch
Fix section mismatch: adds __init to probe function,
frees some init memory, not critical.
WARNING: sound/oss/cs4232.o - Section mismatch: reference to .init.text: from .text after 'cs4232_pnp_probe' (at offset 0x152)
Signed-off-by: Randy Dunlap <rdunlap@xenotime.net>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/oss/cs4232.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/oss/cs4232.c b/sound/oss/cs4232.c index c7f86f09c28d..80f6c08e26e7 100644 --- a/sound/oss/cs4232.c +++ b/sound/oss/cs4232.c | |||
@@ -405,7 +405,7 @@ static const struct pnp_device_id cs4232_pnp_table[] = { | |||
405 | 405 | ||
406 | MODULE_DEVICE_TABLE(pnp, cs4232_pnp_table); | 406 | MODULE_DEVICE_TABLE(pnp, cs4232_pnp_table); |
407 | 407 | ||
408 | static int cs4232_pnp_probe(struct pnp_dev *dev, const struct pnp_device_id *dev_id) | 408 | static int __init cs4232_pnp_probe(struct pnp_dev *dev, const struct pnp_device_id *dev_id) |
409 | { | 409 | { |
410 | struct address_info *isapnpcfg; | 410 | struct address_info *isapnpcfg; |
411 | 411 | ||