From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stephen Rothwell Subject: linux-next: sound build failure Date: Wed, 21 May 2008 15:32:12 +1000 Message-ID: <20080521153212.f36796e2.sfr@canb.auug.org.au> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Return-path: Received: from chilli.pcug.org.au ([203.10.76.44]:42883 "EHLO smtps.tip.net.au" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753793AbYEUFcQ (ORCPT ); Wed, 21 May 2008 01:32:16 -0400 Sender: linux-next-owner@vger.kernel.org List-ID: To: Takashi Iwai Cc: linux-next@vger.kernel.org Hi Takashi, Today's linux-next build (sparc64 defconfig) failed like this: ERROR: "snd_ctl_make_virtual_master" [sound/pci/ac97/snd-ac97-codec.ko] undefined! ERROR: "snd_ctl_add_slave" [sound/pci/ac97/snd-ac97-codec.ko] undefined! A "select SND_VMASTER" appears to have been lost from "config SND_AC97_CODEC" in commit 6a5751b42420dce9267d7d915eed8f8673d16fdd ("sound: Convert to menuconfig"). I applied the patch below. -- Cheers, Stephen Rothwell sfr@canb.auug.org.au http://www.canb.auug.org.au/~sfr/ >>From b88eff22395ffdf10f37cd1c6f1b6adcd37417f6 Mon Sep 17 00:00:00 2001 From: Stephen Rothwell Date: Wed, 21 May 2008 15:28:59 +1000 Subject: [PATCH] sound: restore SND_VMASTER select to SND_AC97_CODEC Otherwise the following error occurs: ERROR: "snd_ctl_make_virtual_master" [sound/pci/ac97/snd-ac97-codec.ko] undefined! ERROR: "snd_ctl_add_slave" [sound/pci/ac97/snd-ac97-codec.ko] undefined! Signed-off-by: Stephen Rothwell --- sound/drivers/Kconfig | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/sound/drivers/Kconfig b/sound/drivers/Kconfig index 4bf44fb..255fd18 100644 --- a/sound/drivers/Kconfig +++ b/sound/drivers/Kconfig @@ -21,6 +21,7 @@ config SND_AC97_CODEC tristate select SND_PCM select AC97_BUS + select SND_VMASTER menuconfig SND_DRIVERS bool "Generic sound devices" -- 1.5.5.1