diff options
author | Randy Dunlap <randy.dunlap@oracle.com> | 2007-06-25 06:08:01 -0400 |
---|---|---|
committer | Jaroslav Kysela <perex@suse.cz> | 2007-07-20 05:11:34 -0400 |
commit | c12aad6efbee1d937438f1deabbef695add0628b (patch) | |
tree | f04893b33a5cd62d38357608aa1b90e76c4df409 /sound/drivers | |
parent | bdec0c728256e1a3739820e244a5138bcfae5a91 (diff) |
[ALSA] more section mismatches
Something about __init_or_module isn't working as expected (?).
CONFIG_HOTPLUG=y
CONFIG_MODULES=n
Fix shared init/exit code helper:
WARNING: sound/built-in.o(.exit.text+0x243): Section mismatch: reference to .init.text: (between 'alsa_card_mpu401_exit' and 'ac97_bus_exit')
WARNING: sound/built-in.o(.exit.text+0x21b): Section mismatch: reference to .init.text: (between 'alsa_card_dummy_exit' and 'alsa_card_serial_exit')
Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Jaroslav Kysela <perex@suse.cz>
Diffstat (limited to 'sound/drivers')
-rw-r--r-- | sound/drivers/dummy.c | 2 | ||||
-rw-r--r-- | sound/drivers/mpu401/mpu401.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sound/drivers/dummy.c b/sound/drivers/dummy.c index a0f28f51fc7e..4360ae9de19c 100644 --- a/sound/drivers/dummy.c +++ b/sound/drivers/dummy.c | |||
@@ -659,7 +659,7 @@ static struct platform_driver snd_dummy_driver = { | |||
659 | }, | 659 | }, |
660 | }; | 660 | }; |
661 | 661 | ||
662 | static void __init_or_module snd_dummy_unregister_all(void) | 662 | static void snd_dummy_unregister_all(void) |
663 | { | 663 | { |
664 | int i; | 664 | int i; |
665 | 665 | ||
diff --git a/sound/drivers/mpu401/mpu401.c b/sound/drivers/mpu401/mpu401.c index 1d563e515c17..67c6e9745418 100644 --- a/sound/drivers/mpu401/mpu401.c +++ b/sound/drivers/mpu401/mpu401.c | |||
@@ -228,7 +228,7 @@ static struct pnp_driver snd_mpu401_pnp_driver = { | |||
228 | static struct pnp_driver snd_mpu401_pnp_driver; | 228 | static struct pnp_driver snd_mpu401_pnp_driver; |
229 | #endif | 229 | #endif |
230 | 230 | ||
231 | static void __init_or_module snd_mpu401_unregister_all(void) | 231 | static void snd_mpu401_unregister_all(void) |
232 | { | 232 | { |
233 | int i; | 233 | int i; |
234 | 234 | ||