From: Philipp Zabel Date: Sun, 14 Jun 2009 10:51:30 +0000 (+0200) Subject: ASoC: magician: fix PXA SSP clock polarity X-Git-Tag: v2.6.31-rc2~6^2~13^2~4 X-Git-Url: http://ftp.safe.ca/?a=commitdiff_plain;h=33745fb3448f90d2b9e414ccc6689e9ee70cfae4;p=safe%2Fjmp%2Flinux-2.6 ASoC: magician: fix PXA SSP clock polarity Follow-up fix needed since "ASoC: pxa-ssp.c fix clock/frame invert". Signed-off-by: Philipp Zabel Signed-off-by: Mark Brown --- diff --git a/sound/soc/pxa/magician.c b/sound/soc/pxa/magician.c index c89a3cd..326955d 100644 --- a/sound/soc/pxa/magician.c +++ b/sound/soc/pxa/magician.c @@ -184,7 +184,7 @@ static int magician_playback_hw_params(struct snd_pcm_substream *substream, /* set cpu DAI configuration */ ret = snd_soc_dai_set_fmt(cpu_dai, SND_SOC_DAIFMT_DSP_A | - SND_SOC_DAIFMT_IB_IF | SND_SOC_DAIFMT_CBS_CFS); + SND_SOC_DAIFMT_NB_IF | SND_SOC_DAIFMT_CBS_CFS); if (ret < 0) return ret;