694ce89e8fe366830fd26600aefbbfb079f689d6
[openwrt/openwrt.git] / target / linux / brcm2708 / patches-3.14 / 0048-ASoc-Don-t-report-S24_LE-support-it-produces-white-n.patch
1 From ea4cb320f037ddad635159ad0d34a4e7993a252b Mon Sep 17 00:00:00 2001
2 From: popcornmix <popcornmix@gmail.com>
3 Date: Wed, 12 Mar 2014 11:46:34 +0000
4 Subject: [PATCH 48/54] ASoc: Don't report S24_LE support, it produces white
5 noise with xbmc
6
7 ---
8 sound/soc/bcm/bcm2708-i2s.c | 2 +-
9 sound/soc/codecs/pcm5102a.c | 2 +-
10 2 files changed, 2 insertions(+), 2 deletions(-)
11
12 diff --git a/sound/soc/bcm/bcm2708-i2s.c b/sound/soc/bcm/bcm2708-i2s.c
13 index a179216..b25e158 100644
14 --- a/sound/soc/bcm/bcm2708-i2s.c
15 +++ b/sound/soc/bcm/bcm2708-i2s.c
16 @@ -718,7 +718,7 @@ static struct snd_soc_dai_driver bcm2708_i2s_dai = {
17 .channels_max = 2,
18 .rates = SNDRV_PCM_RATE_8000_192000,
19 .formats = SNDRV_PCM_FMTBIT_S16_LE
20 - | SNDRV_PCM_FMTBIT_S24_LE
21 + // | SNDRV_PCM_FMTBIT_S24_LE : disable for now, it causes white noise with xbmc
22 | SNDRV_PCM_FMTBIT_S32_LE
23 },
24 .capture = {
25 diff --git a/sound/soc/codecs/pcm5102a.c b/sound/soc/codecs/pcm5102a.c
26 index 126f1e9..7812d34 100644
27 --- a/sound/soc/codecs/pcm5102a.c
28 +++ b/sound/soc/codecs/pcm5102a.c
29 @@ -28,7 +28,7 @@ static struct snd_soc_dai_driver pcm5102a_dai = {
30 .channels_max = 2,
31 .rates = SNDRV_PCM_RATE_8000_192000,
32 .formats = SNDRV_PCM_FMTBIT_S16_LE |
33 - SNDRV_PCM_FMTBIT_S24_LE |
34 + // SNDRV_PCM_FMTBIT_S24_LE | : disable for now, it causes white noise with xbmc
35 SNDRV_PCM_FMTBIT_S32_LE
36 },
37 };
38 --
39 1.9.1
40