From mboxrd@z Thu Jan 1 00:00:00 1970 From: Johannes Berg Subject: [RFC 12/12] snd-aoa: wire up aoa in sound/ Date: Wed, 07 Jun 2006 15:09:21 +0200 Message-ID: <20060607130918.936839000@sipsolutions.net> References: <20060607130909.584205000@sipsolutions.net> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Received: from sipsolutions.net (crystal.sipsolutions.net [195.210.38.204]) by alsa.jcu.cz (ALSA's E-mail Delivery System) with ESMTP id 832C3169 for ; Wed, 7 Jun 2006 15:11:00 +0200 (MEST) Content-Disposition: inline; filename=wire-up.patch List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: alsa-devel-bounces@lists.sourceforge.net Errors-To: alsa-devel-bounces@lists.sourceforge.net To: alsa-devel@alsa-project.org Cc: linuxppc-dev@ozlabs.org, netstar@gatheringofgray.com List-Id: alsa-devel@alsa-project.org This patch adds the necessary Kconfig and Makefile hooks to make aoa buildable inside the kernel tree. --- a/sound/Kconfig +++ b/sound/Kconfig @@ -58,6 +58,8 @@ source "sound/pci/Kconfig" source "sound/ppc/Kconfig" +source "sound/aoa/Kconfig" + source "sound/arm/Kconfig" source "sound/mips/Kconfig" --- a/sound/Makefile +++ b/sound/Makefile @@ -4,7 +4,7 @@ # obj-$(CONFIG_SOUND) += soundcore.o obj-$(CONFIG_SOUND_PRIME) += oss/ obj-$(CONFIG_DMASOUND) += oss/ -obj-$(CONFIG_SND) += core/ i2c/ drivers/ isa/ pci/ ppc/ arm/ synth/ usb/ sparc/ parisc/ pcmcia/ mips/ +obj-$(CONFIG_SND) += core/ i2c/ drivers/ isa/ pci/ ppc/ arm/ synth/ usb/ sparc/ parisc/ pcmcia/ mips/ aoa/ ifeq ($(CONFIG_SND),y) obj-y += last.o -- From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from sipsolutions.net (crystal.sipsolutions.net [195.210.38.204]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTP id 8B1AF67B49 for ; Wed, 7 Jun 2006 23:11:05 +1000 (EST) Message-Id: <20060607130918.936839000@sipsolutions.net> References: <20060607130909.584205000@sipsolutions.net> Date: Wed, 07 Jun 2006 15:09:21 +0200 From: Johannes Berg To: alsa-devel@alsa-project.org Subject: [RFC 12/12] snd-aoa: wire up aoa in sound/ Mime-Version: 1.0 Cc: linuxppc-dev@ozlabs.org, netstar@gatheringofgray.com List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , This patch adds the necessary Kconfig and Makefile hooks to make aoa buildable inside the kernel tree. --- a/sound/Kconfig +++ b/sound/Kconfig @@ -58,6 +58,8 @@ source "sound/pci/Kconfig" source "sound/ppc/Kconfig" +source "sound/aoa/Kconfig" + source "sound/arm/Kconfig" source "sound/mips/Kconfig" --- a/sound/Makefile +++ b/sound/Makefile @@ -4,7 +4,7 @@ # obj-$(CONFIG_SOUND) += soundcore.o obj-$(CONFIG_SOUND_PRIME) += oss/ obj-$(CONFIG_DMASOUND) += oss/ -obj-$(CONFIG_SND) += core/ i2c/ drivers/ isa/ pci/ ppc/ arm/ synth/ usb/ sparc/ parisc/ pcmcia/ mips/ +obj-$(CONFIG_SND) += core/ i2c/ drivers/ isa/ pci/ ppc/ arm/ synth/ usb/ sparc/ parisc/ pcmcia/ mips/ aoa/ ifeq ($(CONFIG_SND),y) obj-y += last.o --