From 625136eb4a98e82f27c5d9dcb1b8cf8e0bb5bcef Mon Sep 17 00:00:00 2001 From: Axel Lin Date: Fri, 10 Feb 2012 14:54:37 +0800 Subject: [PATCH] ASoC: Fix build error in sound/soc/omap/n810.c Fix below build error which is introduced by commit 022658 "ASoC: core: Add support for DAI and machine kcontrols". CC [M] sound/soc/omap/n810.o sound/soc/omap/n810.c: In function 'n810_set_input': sound/soc/omap/n810.c:194: error: 'codec' undeclared (first use in this function) sound/soc/omap/n810.c:194: error: (Each undeclared identifier is reported only once sound/soc/omap/n810.c:194: error: for each function it appears in.) sound/soc/omap/n810.c:188: warning: unused variable 'card' make[3]: *** [sound/soc/omap/n810.o] Error 1 make[2]: *** [sound/soc/omap] Error 2 make[1]: *** [sound/soc] Error 2 make: *** [sound] Error 2 Signed-off-by: Axel Lin Acked-by: Jarkko Nikula Signed-off-by: Mark Brown --- sound/soc/omap/n810.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sound/soc/omap/n810.c b/sound/soc/omap/n810.c index 1490227..c292bf0 100644 --- a/sound/soc/omap/n810.c +++ b/sound/soc/omap/n810.c @@ -191,7 +191,7 @@ static int n810_set_input(struct snd_kcontrol *kcontrol, return 0; n810_dmic_func = ucontrol->value.integer.value[0]; - n810_ext_control(codec); + n810_ext_control(&card->dapm); return 1; } -- 2.7.4