aboutsummaryrefslogtreecommitdiffstats
path: root/target
diff options
context:
space:
mode:
authorLars-Peter Clausen <lars@metafoo.de>2010-05-29 00:06:59 +0000
committerLars-Peter Clausen <lars@metafoo.de>2010-05-29 00:06:59 +0000
commita3dd9c185c08ada75eed181c90536d41760479f8 (patch)
treefdd12ab7b4a6f59f0209eb978e5942809e95984d /target
parent740fcb14b1e391b771930ab82c4f2fb098b150bf (diff)
downloadmaster-187ad058-a3dd9c185c08ada75eed181c90536d41760479f8.tar.gz
master-187ad058-a3dd9c185c08ada75eed181c90536d41760479f8.tar.bz2
master-187ad058-a3dd9c185c08ada75eed181c90536d41760479f8.zip
[xburst] jzcodec: Enable support for S8 format
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21615 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target')
-rw-r--r--target/linux/xburst/patches-2.6.34/060-jzcodec.patch14
1 files changed, 7 insertions, 7 deletions
diff --git a/target/linux/xburst/patches-2.6.34/060-jzcodec.patch b/target/linux/xburst/patches-2.6.34/060-jzcodec.patch
index 1a380ba7de..80fed9173f 100644
--- a/target/linux/xburst/patches-2.6.34/060-jzcodec.patch
+++ b/target/linux/xburst/patches-2.6.34/060-jzcodec.patch
@@ -1,6 +1,6 @@
-From 3ff79323c50cc67df122c8f02670ff5483ea7ebc Mon Sep 17 00:00:00 2001
+From 075550fa667fca846d1217f649438df5cb4f9529 Mon Sep 17 00:00:00 2001
From: Lars-Peter Clausen <lars@metafoo.de>
-Date: Sat, 24 Apr 2010 12:32:57 +0200
+Date: Fri, 28 May 2010 19:53:05 +0200
Subject: [PATCH] Add jz4740 codec driver
---
@@ -52,7 +52,7 @@ index dd5ce6d..3f6ce05 100644
obj-$(CONFIG_SND_SOC_MAX9877) += snd-soc-max9877.o
diff --git a/sound/soc/codecs/jzcodec.c b/sound/soc/codecs/jzcodec.c
new file mode 100644
-index 0000000..f960d46
+index 0000000..91720fa
--- /dev/null
+++ b/sound/soc/codecs/jzcodec.c
@@ -0,0 +1,513 @@
@@ -325,15 +325,15 @@ index 0000000..f960d46
+ .stream_name = "Playback",
+ .channels_min = 2,
+ .channels_max = 2,
-+ .rates = SNDRV_PCM_RATE_8000_44100,
-+ .formats = SNDRV_PCM_FMTBIT_S16_LE,
++ .rates = SNDRV_PCM_RATE_8000_48000,
++ .formats = SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S8,
+ },
+ .capture = {
+ .stream_name = "Capture",
+ .channels_min = 2,
+ .channels_max = 2,
-+ .rates = SNDRV_PCM_RATE_8000_44100,
-+ .formats = SNDRV_PCM_FMTBIT_S16_LE,
++ .rates = SNDRV_PCM_RATE_8000_48000,
++ .formats = SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S8,
+ },
+ .ops = &jz_codec_dai_ops,
+ .symmetric_rates = 1,