diff options
author | Álvaro Fernández Rojas <noltari@gmail.com> | 2019-08-02 18:55:55 +0200 |
---|---|---|
committer | Álvaro Fernández Rojas <noltari@gmail.com> | 2019-08-02 18:55:55 +0200 |
commit | 00813d4dd976cc823fa089840ff2f4a10dd6cd0c (patch) | |
tree | 8f2c74a928c9ea0eceb64809d9039db824ae6663 /target/linux/brcm2708/patches-4.14/950-0230-ASoC-allo-boss-dac-transmit-S24_LE-with-64-BCLK-cycl.patch | |
parent | 19226502bf6393706defe7f049c587b32c9b4f33 (diff) | |
download | upstream-00813d4dd976cc823fa089840ff2f4a10dd6cd0c.tar.gz upstream-00813d4dd976cc823fa089840ff2f4a10dd6cd0c.tar.bz2 upstream-00813d4dd976cc823fa089840ff2f4a10dd6cd0c.zip |
brcm2708: remove linux 4.14 support
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
Diffstat (limited to 'target/linux/brcm2708/patches-4.14/950-0230-ASoC-allo-boss-dac-transmit-S24_LE-with-64-BCLK-cycl.patch')
-rw-r--r-- | target/linux/brcm2708/patches-4.14/950-0230-ASoC-allo-boss-dac-transmit-S24_LE-with-64-BCLK-cycl.patch | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/target/linux/brcm2708/patches-4.14/950-0230-ASoC-allo-boss-dac-transmit-S24_LE-with-64-BCLK-cycl.patch b/target/linux/brcm2708/patches-4.14/950-0230-ASoC-allo-boss-dac-transmit-S24_LE-with-64-BCLK-cycl.patch deleted file mode 100644 index 4197d4a1d2..0000000000 --- a/target/linux/brcm2708/patches-4.14/950-0230-ASoC-allo-boss-dac-transmit-S24_LE-with-64-BCLK-cycl.patch +++ /dev/null @@ -1,39 +0,0 @@ -From 1d5b2b562fd800069f4090142e201d696ad1122a Mon Sep 17 00:00:00 2001 -From: Matthias Reichl <hias@horus.com> -Date: Thu, 22 Feb 2018 13:07:53 +0100 -Subject: [PATCH 230/454] ASoC: allo-boss-dac: transmit S24_LE with 64 BCLK - cycles - -Signed-off-by: Matthias Reichl <hias@horus.com> ---- - sound/soc/bcm/allo-boss-dac.c | 11 +++++++++++ - 1 file changed, 11 insertions(+) - ---- a/sound/soc/bcm/allo-boss-dac.c -+++ b/sound/soc/bcm/allo-boss-dac.c -@@ -273,6 +273,8 @@ static int snd_allo_boss_hw_params( - { - int ret = 0; - struct snd_soc_pcm_runtime *rtd = substream->private_data; -+ int channels = params_channels(params); -+ int width = snd_pcm_format_physical_width(params_format(params)); - - if (snd_soc_allo_boss_master) { - struct snd_soc_codec *codec = rtd->codec; -@@ -282,7 +284,16 @@ static int snd_allo_boss_hw_params( - - ret = snd_allo_boss_update_rate_den( - substream, params); -+ if (ret) -+ return ret; - } -+ -+ ret = snd_soc_dai_set_tdm_slot(rtd->cpu_dai, 0x03, 0x03, -+ channels, width); -+ if (ret) -+ return ret; -+ ret = snd_soc_dai_set_tdm_slot(rtd->codec_dai, 0x03, 0x03, -+ channels, width); - return ret; - } - |