Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754876Ab0AMGsN (ORCPT ); Wed, 13 Jan 2010 01:48:13 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1752085Ab0AMGsM (ORCPT ); Wed, 13 Jan 2010 01:48:12 -0500 Received: from cantor.suse.de ([195.135.220.2]:39730 "EHLO mx1.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750864Ab0AMGsL (ORCPT ); Wed, 13 Jan 2010 01:48:11 -0500 Date: Wed, 13 Jan 2010 07:48:07 +0100 Message-ID: From: Takashi Iwai To: Thadeu Lima de Souza Cascardo Cc: alsa-devel@alsa-project.org, ibm-acpi@hmh.eng.br, Jaroslav Kysela , linux-kernel@vger.kernel.org Subject: Re: [PATCH] alsa: use subsys_initcall for sound core instead of module_init In-Reply-To: <1263334840-6118-1-git-send-email-cascardo@holoscopio.com> References: <1263334840-6118-1-git-send-email-cascardo@holoscopio.com> User-Agent: Wanderlust/2.15.6 (Almost Unreal) SEMI/1.14.6 (Maruoka) FLIM/1.14.9 (=?UTF-8?B?R29qxY0=?=) APEL/10.7 Emacs/23.1 (x86_64-suse-linux-gnu) MULE/6.0 (HANACHIRUSATO) MIME-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1672 Lines: 60 At Tue, 12 Jan 2010 20:20:39 -0200, Thadeu Lima de Souza Cascardo wrote: > > This is needed for built-in drivers which are built before the sound directory, > like thinkpad_acpi. > > Otherwise, registering a card fails. Oh well, this kind of problem hits again. I don't remember why subsys_init() wasn't taken before... Maybe some dependency between sound and V4L or so. But, it's worth to check again. I'll apply this after some testing. thanks, Takashi > > Signed-off-by: Thadeu Lima de Souza Cascardo > --- > sound/core/sound.c | 4 ++-- > sound/sound_core.c | 2 +- > 2 files changed, 3 insertions(+), 3 deletions(-) > > diff --git a/sound/core/sound.c b/sound/core/sound.c > index 7872a02..563d196 100644 > --- a/sound/core/sound.c > +++ b/sound/core/sound.c > @@ -468,5 +468,5 @@ static void __exit alsa_sound_exit(void) > unregister_chrdev(major, "alsa"); > } > > -module_init(alsa_sound_init) > -module_exit(alsa_sound_exit) > +subsys_initcall(alsa_sound_init); > +module_exit(alsa_sound_exit); > diff --git a/sound/sound_core.c b/sound/sound_core.c > index dbca7c9..7c2d677 100644 > --- a/sound/sound_core.c > +++ b/sound/sound_core.c > @@ -61,7 +61,7 @@ static void __exit cleanup_soundcore(void) > class_destroy(sound_class); > } > > -module_init(init_soundcore); > +subsys_initcall(init_soundcore); > module_exit(cleanup_soundcore); > > > -- > 1.6.6 > -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/