diff -Naru kernel26.orig/include/asm-arm/arch-pxa/htcsable-asic.h kernel26/include/asm-arm/arch-pxa/htcsable-asic.h
--- kernel26.orig/include/asm-arm/arch-pxa/htcsable-asic.h	2008-03-11 00:59:35.000000000 +0100
+++ kernel26/include/asm-arm/arch-pxa/htcsable-asic.h	2008-03-16 03:16:28.000000000 +0100
@@ -65,6 +65,10 @@
 #define GPIOD_KEYPAD_BACKLIGHT 		14	/* Output */ /* Keypad backlight */
 #define GPIOD_KBD_BACKLIGHT 		15	/* Output */ /* Keyboard backlight */
 
+/* HTC Beetles specific pins */
+#define GPIOA_CODEC_RESET	1
+#define GPIOD_CODEC_POWER	6
+
 extern struct platform_device htcsable_asic3;
 
 #endif /* _HTCSABLE_ASIC_H_ */
diff -Naru kernel26.orig/sound/soc/pxa/beetles.c kernel26/sound/soc/pxa/beetles.c
--- kernel26.orig/sound/soc/pxa/beetles.c	1970-01-01 01:00:00.000000000 +0100
+++ kernel26/sound/soc/pxa/beetles.c	2008-03-16 03:45:27.000000000 +0100
@@ -0,0 +1,512 @@
+/*
+ * SoC audio for HTC Beetles
+ *
+ * Copyright (c) 2008 Marek Vasut <marek.vasut@gmail.com>
+ *
+ * Based on SoC audio for HTC Magician
+ * Copyright (c) 2006 Philipp Zabel <philipp.zabel@gmail.com>
+ *
+ * based on spitz.c,
+ * Authors: Liam Girdwood <liam.girdwood@wolfsonmicro.com>
+ *          Richard Purdie <richard@openedhand.com>
+ *
+ *  This program is free software; you can redistribute  it and/or modify it
+ *  under  the terms of  the GNU General  Public License as published by the
+ *  Free Software Foundation;  either version 2 of the  License, or (at your
+ *  option) any later version.
+ *
+ */
+
+#include <linux/module.h>
+#include <linux/timer.h>
+#include <linux/interrupt.h>
+#include <linux/platform_device.h>
+#include <linux/delay.h>
+#include <sound/driver.h>
+#include <sound/core.h>
+#include <sound/pcm.h>
+#include <sound/soc.h>
+#include <sound/soc-dapm.h>
+
+#include <asm/gpio.h>
+#include <asm/hardware/scoop.h>
+#include <asm/arch/pxa-regs.h>
+#include <asm/arch/hardware.h>
+#include <asm/mach-types.h>
+#include "../codecs/uda1380.h"
+#include "pxa2xx-pcm.h"
+#include "pxa2xx-i2s.h"
+#include "pxa2xx-ssp.h"
+
+#include <asm/arch/htcsable.h>
+#include <asm/arch/htcsable-gpio.h>
+#include <asm/arch/htcsable-asic.h>
+
+#include <asm/hardware/ipaq-asic3.h>
+#include <asm/hardware/asic3_leds.h>
+#include <linux/mfd/asic3_base.h>
+
+
+#define MAGICIAN_MIC       0
+#define MAGICIAN_MIC_EXT   1
+
+static int htcbeetles_hp_switch = 0;
+static int htcbeetles_spk_switch = 1;
+static int htcbeetles_in_sel = MAGICIAN_MIC;
+
+static void htcbeetles_ext_control(struct snd_soc_codec *codec)
+{
+	snd_soc_dapm_set_endpoint(codec, "Speaker", htcbeetles_spk_switch);
+	snd_soc_dapm_set_endpoint(codec, "Headphone Jack", htcbeetles_hp_switch);
+
+	switch (htcbeetles_in_sel) {
+	case MAGICIAN_MIC:
+		snd_soc_dapm_set_endpoint(codec, "Headset Mic", 0);
+		snd_soc_dapm_set_endpoint(codec, "Call Mic", 1);
+		break;
+	case MAGICIAN_MIC_EXT:
+		snd_soc_dapm_set_endpoint(codec, "Call Mic", 0);
+		snd_soc_dapm_set_endpoint(codec, "Headset Mic", 1);
+		break;
+	}
+	snd_soc_dapm_sync_endpoints(codec);
+}
+
+static int htcbeetles_startup(struct snd_pcm_substream *substream)
+{
+	struct snd_soc_pcm_runtime *rtd = substream->private_data;
+	struct snd_soc_codec *codec = rtd->socdev->codec;
+
+	/* check the jack status at stream startup */
+	htcbeetles_ext_control(codec);
+
+	return 0;
+}
+
+/*
+ * Magician uses SSP port for playback.
+ */
+static int htcbeetles_playback_hw_params(struct snd_pcm_substream *substream,
+				       struct snd_pcm_hw_params *params)
+{
+	struct snd_soc_pcm_runtime *rtd = substream->private_data;
+	struct snd_soc_codec_dai *codec_dai = rtd->dai->codec_dai;
+	struct snd_soc_cpu_dai *cpu_dai = rtd->dai->cpu_dai;
+	unsigned int acps=0, acds=0, div4;
+	int ret = 0;
+
+	/*
+	 * Rate = SSPSCLK / (word size(16))
+	 * SSPSCLK = (ACPS / ACDS) / SSPSCLKDIV(div4 or div1)
+	 */
+	switch (params_rate(params)) {
+	case 8000:
+		acps = 32842000;
+		acds = PXA2XX_SSP_CLK_AUDIO_DIV_32;	/* wrong - 32 bits/sample */
+		div4 = PXA2XX_SSP_CLK_SCDB_4;
+		break;
+	case 11025:
+		acps = 5622000;
+		acds = PXA2XX_SSP_CLK_AUDIO_DIV_8;	/* 16 bits/sample, 1 slot */
+		div4 = PXA2XX_SSP_CLK_SCDB_4;
+		break;
+	case 22050:
+		acps = 5622000;
+		acds = PXA2XX_SSP_CLK_AUDIO_DIV_4;
+		div4 = PXA2XX_SSP_CLK_SCDB_4;
+		break;
+	case 44100:
+		acps = 11345000;
+		acds = PXA2XX_SSP_CLK_AUDIO_DIV_4;
+		div4 = PXA2XX_SSP_CLK_SCDB_4;
+		break;
+	case 48000:
+		acps = 12235000;
+		acds = PXA2XX_SSP_CLK_AUDIO_DIV_4;
+		div4 = PXA2XX_SSP_CLK_SCDB_4;
+		break;
+	}
+
+	/* set codec DAI configuration */
+	ret = codec_dai->dai_ops.set_fmt(codec_dai, SND_SOC_DAIFMT_MSB |
+			SND_SOC_DAIFMT_NB_NF | SND_SOC_DAIFMT_CBS_CFS);
+	if (ret < 0)
+		return ret;
+
+	/* set cpu DAI configuration */
+	ret = cpu_dai->dai_ops.set_fmt(cpu_dai, SND_SOC_DAIFMT_MSB |
+			SND_SOC_DAIFMT_NB_NF | SND_SOC_DAIFMT_CBS_CFS);
+	if (ret < 0)
+		return ret;
+
+	/* set audio clock as clock source */
+	ret = cpu_dai->dai_ops.set_sysclk(cpu_dai, PXA2XX_SSP_CLK_AUDIO, 0,
+			SND_SOC_CLOCK_OUT);
+	if (ret < 0)
+		return ret;
+
+	/* set the SSP audio system clock ACDS divider */
+	ret = cpu_dai->dai_ops.set_clkdiv(cpu_dai,
+			PXA2XX_SSP_AUDIO_DIV_ACDS, acds);
+	if (ret < 0)
+		return ret;
+
+	/* set the SSP audio system clock SCDB divider4 */
+	ret = cpu_dai->dai_ops.set_clkdiv(cpu_dai,
+			PXA2XX_SSP_AUDIO_DIV_SCDB, div4);
+	if (ret < 0)
+		return ret;
+
+	/* set SSP audio pll clock */
+	ret = cpu_dai->dai_ops.set_pll(cpu_dai, 0, 0, acps);
+	if (ret < 0)
+		return ret;
+
+	return 0;
+}
+
+/*
+ * We have to enable the SSP port early so the UDA1380 can flush
+ * it's register cache. The UDA1380 can only write it's interpolator and
+ * decimator registers when the link is running.
+ */
+static int htcbeetles_playback_prepare(struct snd_pcm_substream *substream)
+{
+	/* enable SSP clock - is this needed ? */
+	SSCR0_P(1) |= SSCR0_SSE;
+
+	/* FIXME: ENABLE I2S */
+	SACR0 |= SACR0_BCKD;
+	SACR0 |= SACR0_ENB;
+	pxa_set_cken(CKEN8_I2S, 1);
+
+	return 0;
+}
+
+static int htcbeetles_playback_hw_free(struct snd_pcm_substream *substream)
+{
+	/* FIXME: DISABLE I2S */
+	SACR0 &= ~SACR0_ENB;
+	SACR0 &= ~SACR0_BCKD;
+	pxa_set_cken(CKEN8_I2S, 0);
+	return 0;
+}
+
+/*
+ * Magician uses I2S for capture.
+ */
+static int htcbeetles_capture_hw_params(struct snd_pcm_substream *substream,
+				      struct snd_pcm_hw_params *params)
+{
+	struct snd_soc_pcm_runtime *rtd = substream->private_data;
+	struct snd_soc_codec_dai *codec_dai = rtd->dai->codec_dai;
+	struct snd_soc_cpu_dai *cpu_dai = rtd->dai->cpu_dai;
+	int ret = 0;
+
+	/* set codec DAI configuration */
+	ret = codec_dai->dai_ops.set_fmt(codec_dai,
+			SND_SOC_DAIFMT_MSB | SND_SOC_DAIFMT_NB_NF | SND_SOC_DAIFMT_CBS_CFS);
+	if (ret < 0)
+		return ret;
+
+	/* set cpu DAI configuration */
+	ret = cpu_dai->dai_ops.set_fmt(cpu_dai,
+			SND_SOC_DAIFMT_MSB | SND_SOC_DAIFMT_NB_NF | SND_SOC_DAIFMT_CBS_CFS);
+	if (ret < 0)
+		return ret;
+
+	/* set the I2S system clock as output */
+	ret = cpu_dai->dai_ops.set_sysclk(cpu_dai, PXA2XX_I2S_SYSCLK, 0,
+			SND_SOC_CLOCK_OUT);
+	if (ret < 0)
+		return ret;
+
+	return 0;
+}
+
+/*
+ * We have to enable the I2S port early so the UDA1380 can flush
+ * it's register cache. The UDA1380 can only write it's interpolator and
+ * decimator registers when the link is running.
+ */
+static int htcbeetles_capture_prepare(struct snd_pcm_substream *substream)
+{
+	SACR0 |= SACR0_ENB;
+	return 0;
+}
+
+static struct snd_soc_ops htcbeetles_capture_ops = {
+	.startup = htcbeetles_startup,
+	.hw_params = htcbeetles_capture_hw_params,
+	.prepare = htcbeetles_capture_prepare,
+};
+
+static struct snd_soc_ops htcbeetles_playback_ops = {
+	.startup = htcbeetles_startup,
+	.hw_params = htcbeetles_playback_hw_params,
+	.prepare = htcbeetles_playback_prepare,
+	.hw_free = htcbeetles_playback_hw_free,
+};
+
+static int htcbeetles_get_hp(struct snd_kcontrol * kcontrol,
+			     struct snd_ctl_elem_value * ucontrol)
+{
+	ucontrol->value.integer.value[0] = htcbeetles_hp_switch;
+	return 0;
+}
+
+static int htcbeetles_set_hp(struct snd_kcontrol * kcontrol,
+			     struct snd_ctl_elem_value * ucontrol)
+{
+	struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
+
+	if (htcbeetles_hp_switch == ucontrol->value.integer.value[0])
+		return 0;
+
+	htcbeetles_hp_switch = ucontrol->value.integer.value[0];
+	htcbeetles_ext_control(codec);
+	return 1;
+}
+
+static int htcbeetles_get_spk(struct snd_kcontrol * kcontrol,
+			    struct snd_ctl_elem_value * ucontrol)
+{
+	ucontrol->value.integer.value[0] = htcbeetles_spk_switch;
+	return 0;
+}
+
+static int htcbeetles_set_spk(struct snd_kcontrol * kcontrol,
+			    struct snd_ctl_elem_value * ucontrol)
+{
+	struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
+
+	if (htcbeetles_spk_switch == ucontrol->value.integer.value[0])
+		return 0;
+
+	htcbeetles_spk_switch = ucontrol->value.integer.value[0];
+	htcbeetles_ext_control(codec);
+	return 1;
+}
+
+static int htcbeetles_get_input(struct snd_kcontrol * kcontrol,
+			      struct snd_ctl_elem_value * ucontrol)
+{
+	ucontrol->value.integer.value[0] = htcbeetles_in_sel;
+	return 0;
+}
+
+static int htcbeetles_set_input(struct snd_kcontrol * kcontrol,
+			      struct snd_ctl_elem_value * ucontrol)
+{
+	if (htcbeetles_in_sel == ucontrol->value.integer.value[0])
+		return 0;
+
+	htcbeetles_in_sel = ucontrol->value.integer.value[0];
+
+	/* FIXME - find correct GPIO */
+/*	gpio_set_value(EGPIO_MAGICIAN_IN_SEL0, 0);
+	switch (htcbeetles_in_sel) {
+	case MAGICIAN_MIC:
+		gpio_set_value(EGPIO_MAGICIAN_IN_SEL1, 1);
+		break;
+	case MAGICIAN_MIC_EXT:
+		gpio_set_value(EGPIO_MAGICIAN_IN_SEL1, 0);
+	}
+*/
+	return 1;
+}
+
+static int htcbeetles_spk_power(struct snd_soc_dapm_widget *w, int event)
+{
+	asic3_set_gpio_out_a(&htcsable_asic3.dev, 1<<GPIOA_SPKMIC_PWR2_ON,
+				1<<GPIOA_SPKMIC_PWR2_ON);
+	return 0;
+}
+
+static int htcbeetles_hp_power(struct snd_soc_dapm_widget *w, int event)
+{
+	asic3_set_gpio_out_a(&htcsable_asic3.dev, 1<<GPIOA_HEADPHONE_PWR_ON,
+				1<<GPIOA_HEADPHONE_PWR_ON);
+	return 0;
+}
+
+static int htcbeetles_mic_bias(struct snd_soc_dapm_widget *w, int event)
+{
+	/* FIXME - find correct GPIO */
+//	gpio_set_value(EGPIO_MAGICIAN_MIC_POWER, SND_SOC_DAPM_EVENT_ON(event));
+	return 0;
+}
+
+/* htcbeetles machine dapm widgets */
+static const struct snd_soc_dapm_widget uda1380_dapm_widgets[] = {
+	SND_SOC_DAPM_HP("Headphone Jack", htcbeetles_hp_power),
+	SND_SOC_DAPM_SPK("Speaker", htcbeetles_spk_power),
+	SND_SOC_DAPM_MIC("Call Mic", htcbeetles_mic_bias),
+	SND_SOC_DAPM_MIC("Headset Mic", htcbeetles_mic_bias),
+};
+
+/* htcbeetles machine audio_map */
+static const char *audio_map[][3] = {
+
+	/* Headphone connected to VOUTL, VOUTR */
+	{"Headphone Jack", NULL, "VOUTL"},
+	{"Headphone Jack", NULL, "VOUTR"},
+
+	/* Speaker connected to VOUTL, VOUTR */
+	{"Speaker", NULL, "VOUTL"},
+	{"Speaker", NULL, "VOUTR"},
+
+	/* Mics are connected to VINM */
+	{"VINM", NULL, "Headset Mic"},
+	{"VINM", NULL, "Call Mic"},
+
+	{NULL, NULL, NULL},
+};
+
+static const char *input_select[] = { "Call Mic", "Headset Mic" };
+static const struct soc_enum htcbeetles_in_sel_enum =
+	SOC_ENUM_SINGLE_EXT(2, input_select);
+
+static const struct snd_kcontrol_new uda1380_htcbeetles_controls[] = {
+	SOC_SINGLE_BOOL_EXT("Headphone Switch", &htcbeetles_hp_switch,
+			htcbeetles_get_hp, htcbeetles_set_hp),
+	SOC_SINGLE_BOOL_EXT("Speaker Switch", &htcbeetles_spk_switch,
+			htcbeetles_get_spk, htcbeetles_set_spk),
+	SOC_ENUM_EXT("Input Select", htcbeetles_in_sel_enum,
+			htcbeetles_get_input, htcbeetles_set_input),
+};
+
+/*
+ * Logic for a uda1380 as connected on a HTC Magician
+ */
+static int htcbeetles_uda1380_init(struct snd_soc_codec *codec)
+{
+	int i, err;
+
+	/* NC codec pins */
+	snd_soc_dapm_set_endpoint(codec, "VOUTLHP", 0);
+	snd_soc_dapm_set_endpoint(codec, "VOUTRHP", 0);
+
+	/* FIXME: is anything connected here? */
+	snd_soc_dapm_set_endpoint(codec, "VINL", 0);
+	snd_soc_dapm_set_endpoint(codec, "VINR", 0);
+
+	/* Add htcbeetles specific controls */
+	for (i = 0; i < ARRAY_SIZE(uda1380_htcbeetles_controls); i++) {
+		if ((err = snd_ctl_add(codec->card,
+				snd_soc_cnew(&uda1380_htcbeetles_controls[i],
+				codec, NULL))) < 0)
+			return err;
+	}
+
+	/* Add htcbeetles specific widgets */
+	for (i = 0; i < ARRAY_SIZE(uda1380_dapm_widgets); i++) {
+		snd_soc_dapm_new_control(codec, &uda1380_dapm_widgets[i]);
+	}
+
+	/* Set up htcbeetles specific audio path interconnects */
+	for (i = 0; audio_map[i][0] != NULL; i++) {
+		snd_soc_dapm_connect_input(codec, audio_map[i][0],
+				audio_map[i][1], audio_map[i][2]);
+	}
+
+	snd_soc_dapm_sync_endpoints(codec);
+	return 0;
+}
+
+/* htcbeetles digital audio interface glue - connects codec <--> CPU */
+static struct snd_soc_dai_link htcbeetles_dai[] = {
+{
+	.name		= "uda1380",
+	.stream_name	= "UDA1380 Playback",
+	.cpu_dai	= &pxa_ssp_dai[0],
+	.codec_dai	= &uda1380_dai[UDA1380_DAI_PLAYBACK],
+	.init		= htcbeetles_uda1380_init,
+	.ops		= &htcbeetles_playback_ops,
+},
+{
+	.name		= "uda1380",
+	.stream_name	= "UDA1380 Capture",
+	.cpu_dai	= &pxa_i2s_dai,
+	.codec_dai	= &uda1380_dai[UDA1380_DAI_CAPTURE],
+	.ops		= &htcbeetles_capture_ops,
+}
+};
+
+/* htcbeetles audio machine driver */
+static struct snd_soc_machine snd_soc_machine_htcbeetles = {
+	.name		= "HTC Beetles",
+	.dai_link	= htcbeetles_dai,
+	.num_links	= ARRAY_SIZE(htcbeetles_dai),
+};
+
+/* htcbeetles audio private data */
+static struct uda1380_setup_data htcbeetles_uda1380_setup = {
+	.i2c_address	= 0x18,
+	.dac_clk	= UDA1380_DAC_CLK_WSPLL,
+};
+
+/* htcbeetles audio subsystem */
+static struct snd_soc_device htcbeetles_snd_devdata = {
+	.machine	= &snd_soc_machine_htcbeetles,
+	.platform	= &pxa2xx_soc_platform,
+	.codec_dev	= &soc_codec_dev_uda1380,
+	.codec_data	= &htcbeetles_uda1380_setup,
+};
+
+static struct platform_device *htcbeetles_snd_device;
+
+static int __init htcbeetles_init(void)
+{
+	int ret;
+
+	if (!machine_is_htcbeetles())
+		return -ENODEV;
+
+	/* Power UP */
+	asic3_set_gpio_out_d(&htcsable_asic3.dev, 1<<GPIOD_CODEC_POWER,
+				1<<GPIOD_CODEC_POWER);
+	udelay(15);
+	/* Hit the reset */
+	asic3_set_gpio_out_a(&htcsable_asic3.dev, 1<<GPIOA_CODEC_RESET,
+				1<<GPIOA_CODEC_RESET);
+	udelay(5);
+	asic3_set_gpio_out_a(&htcsable_asic3.dev, 1<<GPIOA_CODEC_RESET, 0);
+
+	/* correct place? we'll need it to talk to the uda1380 */
+	request_module("i2c-pxa");
+
+	htcbeetles_snd_device = platform_device_alloc("soc-audio", -1);
+	if (!htcbeetles_snd_device)
+		return -ENOMEM;
+
+	platform_set_drvdata(htcbeetles_snd_device, &htcbeetles_snd_devdata);
+	htcbeetles_snd_devdata.dev = &htcbeetles_snd_device->dev;
+	ret = platform_device_add(htcbeetles_snd_device);
+
+	if (ret)
+		platform_device_put(htcbeetles_snd_device);
+
+	pxa_gpio_mode(GPIO23_SCLK_MD);
+	pxa_gpio_mode(GPIO24_SFRM_MD);
+	pxa_gpio_mode(GPIO25_STXD_MD);
+
+	return ret;
+}
+
+static void __exit htcbeetles_exit(void)
+{
+	platform_device_unregister(htcbeetles_snd_device);
+
+	asic3_set_gpio_out_d(&htcsable_asic3.dev, 1<<GPIOA_SPKMIC_PWR2_ON, 0);
+	asic3_set_gpio_out_d(&htcsable_asic3.dev, 1<<GPIOA_HEADPHONE_PWR_ON, 0);
+	asic3_set_gpio_out_d(&htcsable_asic3.dev, 1<<GPIOD_CODEC_POWER, 0);
+
+}
+
+module_init(htcbeetles_init);
+module_exit(htcbeetles_exit);
+
+MODULE_AUTHOR("Marek Vasut <marek.vasut@gmail.com>");
+MODULE_DESCRIPTION("ALSA SoC HTC Beetles");
+MODULE_LICENSE("GPL");
diff -Naru kernel26.orig/sound/soc/pxa/Kconfig kernel26/sound/soc/pxa/Kconfig
--- kernel26.orig/sound/soc/pxa/Kconfig	2008-02-18 21:51:01.000000000 +0100
+++ kernel26/sound/soc/pxa/Kconfig	2008-03-16 03:32:59.000000000 +0100
@@ -161,6 +161,15 @@
 	  Say Y if you want to add support for SoC audio on the
 	  HTC Magician.
 
+config SND_PXA2XX_SOC_BEETLES
+	tristate "SoC Audio support for HTC Beetles"
+	depends on SND_PXA2XX_SOC
+	select SND_PXA2XX_SOC_I2S
+	select SND_PXA2XX_SOC_SSP
+	help
+	  Say Y if you want to add support for SoC audio on the
+	  HTC Beetles.
+
 config SND_PXA2XX_SOC_AMESOM_TLV320
 	tristate "SoC SSP Audio support for AMESOM - TLV320AIC24k"
 	depends on SND_PXA2XX_SOC && MACH_AMESOM
diff -Naru kernel26.orig/sound/soc/pxa/Makefile kernel26/sound/soc/pxa/Makefile
--- kernel26.orig/sound/soc/pxa/Makefile	2008-02-18 21:51:01.000000000 +0100
+++ kernel26/sound/soc/pxa/Makefile	2008-03-16 03:34:52.000000000 +0100
@@ -25,6 +25,7 @@
 snd-soc-tosa-objs := tosa.o
 snd-soc-spitz-objs := spitz.o
 snd-soc-magician-objs := magician.o
+snd-soc-beetles-objs := beetles.o
 snd-soc-amesom-tlv320-objs := amesom_tlv320.o
 snd-soc-blueangel-objs := blueangel.o
 snd-soc-h5000-objs := h5000.o
@@ -45,6 +46,7 @@
 obj-$(CONFIG_SND_PXA2XX_SOC_TOSA) += snd-soc-tosa.o
 obj-$(CONFIG_SND_PXA2XX_SOC_SPITZ) += snd-soc-spitz.o
 obj-$(CONFIG_SND_PXA2XX_SOC_MAGICIAN) += snd-soc-magician.o
+obj-$(CONFIG_SND_PXA2XX_SOC_BEETLES) += snd-soc-beetles.o
 obj-$(CONFIG_SND_PXA2XX_SOC_AMESOM_TLV320) += snd-soc-amesom-tlv320.o
 obj-$(CONFIG_SND_PXA2XX_SOC_BLUEANGEL) += snd-soc-blueangel.o
 obj-$(CONFIG_SND_PXA2XX_SOC_H5000) += snd-soc-h5000.o

