All of lore.kernel.org
 help / color / mirror / Atom feed
From: Steve Sakoman <steve@sakoman.com>
To: Grazvydas Ignotas <notasas@gmail.com>
Cc: alsa-devel@alsa-project.org, broonie@opensource.wolfsonmicro.com
Subject: Re: [PATCH] ALSA: ASoC: TWL4030 codec - fix 256*Fs clock
Date: Wed, 05 Nov 2008 14:24:10 -0800	[thread overview]
Message-ID: <1225923850.10608.8.camel@otto> (raw)
In-Reply-To: <1225921865-27463-1-git-send-email-notasas@gmail.com>

On Wed, 2008-11-05 at 23:51 +0200, Grazvydas Ignotas wrote:
> According to TRM, 256*Fs clock output should be enabled
> when TWL4030 is in slave mode, not master.
> This allows sound to work on OMAP3 Pandora, which uses
> 256*Fs clock.
> 
> Signed-off-by: Grazvydas Ignotas <notasas@gmail.com>

Acked-by: Steve Sakoman <steve@sakoman.com>

As we discussed on IRC you are correct!  I apologize for not making this
change when I resubmitted the patches last week.  Somehow fell off my
todo list.

Steve

> ---
>  sound/soc/codecs/twl4030.c |    4 ++--
>  1 files changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/sound/soc/codecs/twl4030.c b/sound/soc/codecs/twl4030.c
> index ee2f0d3..90f3b4d 100644
> --- a/sound/soc/codecs/twl4030.c
> +++ b/sound/soc/codecs/twl4030.c
> @@ -469,11 +469,11 @@ static int twl4030_set_dai_fmt(struct snd_soc_dai *codec_dai,
>  	switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) {
>  	case SND_SOC_DAIFMT_CBM_CFM:
>  		format &= ~(TWL4030_AIF_SLAVE_EN);
> -		format |= TWL4030_CLK256FS_EN;
> +		format &= ~(TWL4030_CLK256FS_EN);
>  		break;
>  	case SND_SOC_DAIFMT_CBS_CFS:
> -		format &= ~(TWL4030_CLK256FS_EN);
>  		format |= TWL4030_AIF_SLAVE_EN;
> +		format |= TWL4030_CLK256FS_EN;
>  		break;
>  	default:
>  		return -EINVAL;

      reply	other threads:[~2008-11-05 22:55 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-11-05 21:51 [PATCH] ALSA: ASoC: TWL4030 codec - fix 256*Fs clock Grazvydas Ignotas
2008-11-05 22:24 ` Steve Sakoman [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=1225923850.10608.8.camel@otto \
    --to=steve@sakoman.com \
    --cc=alsa-devel@alsa-project.org \
    --cc=broonie@opensource.wolfsonmicro.com \
    --cc=notasas@gmail.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.