dect
/
linux-2.6
Archived
13
0
Fork 0

ALSA: workaround: change the timing of alsa_sound_last_init()

Current alsa_sound_last_init() was called as __initcall().
So, on current ALSA, only devices that had been properly
registered at this point were shown.
So, it will show "No soundcards found" if driver requests
probe deferment. it's often misleading.
This patch delays the timing of alsa_sound_last_init()
as workaround.

Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Reviwed-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
Kuninori Morimoto 2012-04-19 00:00:27 -07:00 committed by Takashi Iwai
parent 3e843196c6
commit 590b4775d6
1 changed files with 1 additions and 1 deletions

View File

@ -38,4 +38,4 @@ static int __init alsa_sound_last_init(void)
return 0;
}
__initcall(alsa_sound_last_init);
late_initcall_sync(alsa_sound_last_init);