From: Mark Brown Date: Wed, 16 Dec 2009 20:36:37 +0000 (+0000) Subject: ASoC: Fix build of DA7210 X-Git-Tag: v2.6.34-rc1~3^2~3^2~107 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c2151433847e88ba05c6bb539d9397ea90d755e6;p=profile%2Fivi%2Fkernel-x86-ivi.git ASoC: Fix build of DA7210 DAC_VOICE_EN was not defined - looks to have been overly enthusiastically deleted from a previous revision of the patch, pull the value from v1. Signed-off-by: Mark Brown --- diff --git a/sound/soc/codecs/da7210.c b/sound/soc/codecs/da7210.c index 14f5f34..fbf3ab4 100644 --- a/sound/soc/codecs/da7210.c +++ b/sound/soc/codecs/da7210.c @@ -81,6 +81,9 @@ #define DA7210_ADC_L_EN (1 << 3) #define DA7210_ADC_R_EN (1 << 7) +/* DAC_HPF fields */ +#define DA7210_DAC_VOICE_EN (1 << 7) + /* DAC_SEL bit fields */ #define DA7210_DAC_L_SRC_DAI_L (4 << 0) #define DA7210_DAC_L_EN (1 << 3)