All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jonathan Cameron <jic23@cam.ac.uk>
To: Mark Brown <broonie@kernel.org>, Liam Girdwood <lgirdwood@gmail.com>
Cc: alsa-devel@alsa-project.org, patches@opensource.wolfsonmicro.com,
	Mark Brown <broonie@linaro.org>
Subject: Re: [PATCH 1/2] ASoC: wm8940: Convert to table based control and DAPM init
Date: Sun, 17 Nov 2013 18:25:15 +0000	[thread overview]
Message-ID: <52890A0B.6070207@cam.ac.uk> (raw)
In-Reply-To: <1383931413-8943-1-git-send-email-broonie@kernel.org>

On 11/08/13 17:23, Mark Brown wrote:
> From: Mark Brown <broonie@linaro.org>
> 
> Signed-off-by: Mark Brown <broonie@linaro.org>
Don't have working hardware any more for this, but looks sensible.

Acked-by: Jonathan Cameron <jic23@kernel.org>
> ---
>  sound/soc/codecs/wm8940.c | 28 +++++++---------------------
>  1 file changed, 7 insertions(+), 21 deletions(-)
> 
> diff --git a/sound/soc/codecs/wm8940.c b/sound/soc/codecs/wm8940.c
> index b1591c6..4858b5c 100644
> --- a/sound/soc/codecs/wm8940.c
> +++ b/sound/soc/codecs/wm8940.c
> @@ -264,7 +264,7 @@ static const struct snd_soc_dapm_widget wm8940_dapm_widgets[] = {
>  	SND_SOC_DAPM_INPUT("AUX"),
>  };
>  
> -static const struct snd_soc_dapm_route audio_map[] = {
> +static const struct snd_soc_dapm_route wm8940_dapm_routes[] = {
>  	/* Mono output mixer */
>  	{"Mono Mixer", "PCM Playback Switch", "DAC"},
>  	{"Mono Mixer", "Aux Playback Switch", "Aux Input"},
> @@ -296,21 +296,6 @@ static const struct snd_soc_dapm_route audio_map[] = {
>  	{"ADC", NULL, "Boost Mixer"},
>  };
>  
> -static int wm8940_add_widgets(struct snd_soc_codec *codec)
> -{
> -	struct snd_soc_dapm_context *dapm = &codec->dapm;
> -	int ret;
> -
> -	ret = snd_soc_dapm_new_controls(dapm, wm8940_dapm_widgets,
> -					ARRAY_SIZE(wm8940_dapm_widgets));
> -	if (ret)
> -		goto error_ret;
> -	ret = snd_soc_dapm_add_routes(dapm, audio_map, ARRAY_SIZE(audio_map));
> -
> -error_ret:
> -	return ret;
> -}
> -
>  #define wm8940_reset(c) snd_soc_write(c, WM8940_SOFTRESET, 0);
>  
>  static int wm8940_set_dai_fmt(struct snd_soc_dai *codec_dai,
> @@ -716,11 +701,6 @@ static int wm8940_probe(struct snd_soc_codec *codec)
>  			return ret;
>  	}
>  
> -	ret = snd_soc_add_codec_controls(codec, wm8940_snd_controls,
> -			     ARRAY_SIZE(wm8940_snd_controls));
> -	if (ret)
> -		return ret;
> -	ret = wm8940_add_widgets(codec);
>  	return ret;
>  }
>  
> @@ -736,6 +716,12 @@ static struct snd_soc_codec_driver soc_codec_dev_wm8940 = {
>  	.suspend =	wm8940_suspend,
>  	.resume =	wm8940_resume,
>  	.set_bias_level = wm8940_set_bias_level,
> +	.controls =     wm8940_snd_controls,
> +	.num_controls = ARRAY_SIZE(wm8940_snd_controls),
> +	.dapm_widgets = wm8940_dapm_widgets,
> +	.num_dapm_widgets = ARRAY_SIZE(wm8940_dapm_widgets),
> +	.dapm_routes =  wm8940_dapm_routes,
> +	.num_dapm_routes = ARRAY_SIZE(wm8940_dapm_routes),
>  	.reg_cache_size = ARRAY_SIZE(wm8940_reg_defaults),
>  	.reg_word_size = sizeof(u16),
>  	.reg_cache_default = wm8940_reg_defaults,
> 

      parent reply	other threads:[~2013-11-17 17:24 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-11-08 17:23 [PATCH 1/2] ASoC: wm8940: Convert to table based control and DAPM init Mark Brown
2013-11-08 17:23 ` [PATCH 2/2] ASoC: wm8940: Convert to direct regmap API usage Mark Brown
2013-11-17 18:27   ` Jonathan Cameron
2013-11-09 12:01 ` [PATCH 1/2] ASoC: wm8940: Convert to table based control and DAPM init Charles Keepax
2013-11-17 18:25 ` Jonathan Cameron [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=52890A0B.6070207@cam.ac.uk \
    --to=jic23@cam.ac.uk \
    --cc=alsa-devel@alsa-project.org \
    --cc=broonie@kernel.org \
    --cc=broonie@linaro.org \
    --cc=lgirdwood@gmail.com \
    --cc=patches@opensource.wolfsonmicro.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.