mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-20 22:23:27 +00:00
7d7aa2fd92
This change makes the names of Broadcom targets consistent by using the common notation based on SoC/CPU ID (which is used internally anyway), bcmXXXX instead of brcmXXXX. This is even used for target TITLE in make menuconfig already, only the short target name used brcm so far. Despite, since subtargets range from bcm2708 to bcm2711, it seems appropriate to use bcm27xx instead of bcm2708 (again, as already done for BOARDNAME). This also renames the packages brcm2708-userland and brcm2708-gpu-fw. Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de> Acked-by: Álvaro Fernández Rojas <noltari@gmail.com>
27 lines
987 B
Diff
27 lines
987 B
Diff
From 92d32a3a11bc8c290370ba37bf792996ce3da8bc Mon Sep 17 00:00:00 2001
|
|
From: Matt Flax <flatmax@flatmax.org>
|
|
Date: Thu, 30 Aug 2018 09:38:02 +1000
|
|
Subject: [PATCH] ASoC: cs4265: Add a S/PDIF enable switch
|
|
|
|
commit f853d6b3ba345297974d877d8ed0f4a91eaca739 upstream.
|
|
|
|
This patch adds a S/PDIF enable switch as a SOC_SINGLE.
|
|
|
|
Signed-off-by: Matt Flax <flatmax@flatmax.org>
|
|
Reviewed-by: Charles Keepax <ckeepax@opensource.cirrus.com>
|
|
Signed-off-by: Mark Brown <broonie@kernel.org>
|
|
---
|
|
sound/soc/codecs/cs4265.c | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
--- a/sound/soc/codecs/cs4265.c
|
|
+++ b/sound/soc/codecs/cs4265.c
|
|
@@ -154,6 +154,7 @@ static const struct snd_kcontrol_new cs4
|
|
SOC_SINGLE("E to F Buffer Disable Switch", CS4265_SPDIF_CTL1,
|
|
6, 1, 0),
|
|
SOC_ENUM("C Data Access", cam_mode_enum),
|
|
+ SOC_SINGLE("SPDIF Switch", CS4265_SPDIF_CTL2, 5, 1, 1),
|
|
SOC_SINGLE("Validity Bit Control Switch", CS4265_SPDIF_CTL2,
|
|
3, 1, 0),
|
|
SOC_ENUM("SPDIF Mono/Stereo", spdif_mono_stereo_enum),
|