[Armadeus-commitlog] armadeus branch, master, updated. armadeus-7.0-6-ge8ce1d5ad
Brought to you by:
sszy
|
From: Sébastien S. <ss...@us...> - 2018-09-06 12:51:02
|
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "armadeus".
The branch, master has been updated
via e8ce1d5ad975c58fa46c32e0e6694b1be83915b5 (commit)
from 7b4fcb56fe7e7c6000c027fad86fec1705e8ceaa (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit e8ce1d5ad975c58fa46c32e0e6694b1be83915b5
Author: Sébastien Szymanski <seb...@ar...>
Date: Thu Sep 6 13:17:43 2018 +0200
[LINUX] 4.17: add patch to fix a control of CS4265 codec
Patch sent upstream.
-----------------------------------------------------------------------
Summary of changes:
...ASoC-cs4265-fix-MMTLR-Data-switch-control.patch | 35 ++++++++++++++++++++++
1 file changed, 35 insertions(+)
create mode 100644 patches/linux/4.17/0805-ASoC-cs4265-fix-MMTLR-Data-switch-control.patch
diff --git a/patches/linux/4.17/0805-ASoC-cs4265-fix-MMTLR-Data-switch-control.patch b/patches/linux/4.17/0805-ASoC-cs4265-fix-MMTLR-Data-switch-control.patch
new file mode 100644
index 000000000..c1a663705
--- /dev/null
+++ b/patches/linux/4.17/0805-ASoC-cs4265-fix-MMTLR-Data-switch-control.patch
@@ -0,0 +1,35 @@
+From 904ac052f036d934395b4d5d422f8ac770348381 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?S=C3=A9bastien=20Szymanski?=
+ <seb...@ar...>
+Date: Tue, 4 Sep 2018 10:30:54 +0200
+Subject: [PATCH 1/1] ASoC: cs4265: fix MMTLR Data switch control
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+The MMTLR bit is in the CS4265_SPDIF_CTL2 register at address 0x12 bit 0
+and not at address 0x0 bit 1. Fix this.
+
+Signed-off-by: Sébastien Szymanski <seb...@ar...>
+---
+ sound/soc/codecs/cs4265.c | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/sound/soc/codecs/cs4265.c b/sound/soc/codecs/cs4265.c
+index 275677de669f..407554175282 100644
+--- a/sound/soc/codecs/cs4265.c
++++ b/sound/soc/codecs/cs4265.c
+@@ -157,8 +157,8 @@ static const struct snd_kcontrol_new cs4265_snd_controls[] = {
+ SOC_SINGLE("Validity Bit Control Switch", CS4265_SPDIF_CTL2,
+ 3, 1, 0),
+ SOC_ENUM("SPDIF Mono/Stereo", spdif_mono_stereo_enum),
+- SOC_SINGLE("MMTLR Data Switch", 0,
+- 1, 1, 0),
++ SOC_SINGLE("MMTLR Data Switch", CS4265_SPDIF_CTL2,
++ 0, 1, 0),
+ SOC_ENUM("Mono Channel Select", spdif_mono_select_enum),
+ SND_SOC_BYTES("C Data Buffer", CS4265_C_DATA_BUFF, 24),
+ };
+--
+2.16.4
+
hooks/post-receive
--
armadeus
|