From: Chris Rattray Date: Thu, 17 Jan 2013 13:11:47 +0000 (+0000) Subject: ASoC: wm2200: Set system clock control register is adsp structs X-Git-Tag: v3.9-rc1~52^2~16^2~11^2~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0098389564fbdfbeb08181f772205d87a18f5b37;p=platform%2Fkernel%2Flinux-stable.git ASoC: wm2200: Set system clock control register is adsp structs Allows ADSP control code to set the dsp clock rate to match the sys clock rate. Signed-off-by: Chris Rattray Signed-off-by: Mark Brown --- diff --git a/sound/soc/codecs/wm2200.c b/sound/soc/codecs/wm2200.c index 0e11184..fc05553 100644 --- a/sound/soc/codecs/wm2200.c +++ b/sound/soc/codecs/wm2200.c @@ -2224,6 +2224,9 @@ static int wm2200_i2c_probe(struct i2c_client *i2c, wm2200->dsp[i].num = i + 1; wm2200->dsp[i].dev = &i2c->dev; wm2200->dsp[i].regmap = wm2200->regmap; + wm2200->dsp[i].sysclk_reg = WM2200_CLOCKING_3; + wm2200->dsp[i].sysclk_mask = WM2200_SYSCLK_FREQ_MASK; + wm2200->dsp[i].sysclk_shift = WM2200_SYSCLK_FREQ_SHIFT; } wm2200->dsp[0].base = WM2200_DSP1_CONTROL_1;