All of lore.kernel.org
 help / color / mirror / Atom feed
From: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
To: Mark Brown <broonie@kernel.org>
Cc: Linux-ALSA <alsa-devel@alsa-project.org>
Subject: [PATCH 44/44] ASoC: soc-utils: remove dummy Platform
Date: 07 Jun 2019 11:29:12 +0900	[thread overview]
Message-ID: <87ftomb5q3.wl-kuninori.morimoto.gx@renesas.com> (raw)
In-Reply-To: <877e9ydz81.wl-kuninori.morimoto.gx@renesas.com>


From: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>

ALSA SoC used 2 type of Platform if sound card doesn't need
Platform.

	1) use Dummy Platform as Platform component
	2) use CPU component  as Platform component

Now, ALSA SoC allows "no Platform" settings, and it will behave
same as 2) case selection. And, all sound card which doesn't need
specific Platform are now not selecting Platform any more.

This means, no sound card is using dummy Platform on ALSA SoC any
more. This patch removes unused dummy Platform.

Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
---
 sound/soc/soc-utils.c | 25 -------------------------
 1 file changed, 25 deletions(-)

diff --git a/sound/soc/soc-utils.c b/sound/soc/soc-utils.c
index e3b9dd6..f67e715 100644
--- a/sound/soc/soc-utils.c
+++ b/sound/soc/soc-utils.c
@@ -262,26 +262,6 @@ static const struct snd_pcm_hardware dummy_dma_hardware = {
 	.periods_max		= 128,
 };
 
-static int dummy_dma_open(struct snd_pcm_substream *substream)
-{
-	struct snd_soc_pcm_runtime *rtd = substream->private_data;
-
-	/* BE's dont need dummy params */
-	if (!rtd->dai_link->no_pcm)
-		snd_soc_set_runtime_hwparams(substream, &dummy_dma_hardware);
-
-	return 0;
-}
-
-static const struct snd_pcm_ops snd_dummy_dma_ops = {
-	.open		= dummy_dma_open,
-	.ioctl		= snd_pcm_lib_ioctl,
-};
-
-static const struct snd_soc_component_driver dummy_platform = {
-	.ops = &snd_dummy_dma_ops,
-};
-
 static const struct snd_soc_component_driver dummy_codec = {
 	.idle_bias_on		= 1,
 	.use_pmdown_time	= 1,
@@ -339,11 +319,6 @@ static int snd_soc_dummy_probe(struct platform_device *pdev)
 
 	ret = devm_snd_soc_register_component(&pdev->dev,
 					      &dummy_codec, &dummy_dai, 1);
-	if (ret < 0)
-		return ret;
-
-	ret = devm_snd_soc_register_component(&pdev->dev, &dummy_platform,
-					      NULL, 0);
 
 	return ret;
 }
-- 
2.7.4

  parent reply	other threads:[~2019-06-07  2:29 UTC|newest]

Thread overview: 49+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-06-07  2:21 [PATCH 00/44] ASoC: no Platform support Kuninori Morimoto
2019-06-07  2:21 ` [PATCH 01/44] ASoC: soc-core: allow no Platform on dai_link Kuninori Morimoto
2019-06-07  2:22 ` [PATCH 02/44] ASoC: vc4: vc4_hdmi: don't select unnecessary Platform Kuninori Morimoto
2019-06-07  2:22 ` [PATCH 03/44] ASoC: atmel: atmel-classd: " Kuninori Morimoto
2019-06-07  2:22 ` [PATCH 04/44] ASoC: atmel: atmel-pdmic: " Kuninori Morimoto
2019-06-07  2:22 ` [PATCH 05/44] ASoC: atmel: atmel_wm8904: " Kuninori Morimoto
2019-06-07  2:23 ` [PATCH 06/44] ASoC: atmel: mikroe-proto: " Kuninori Morimoto
2019-06-07  2:23 ` [PATCH 07/44] ASoC: atmel: sam9g20_wm8731: " Kuninori Morimoto
2019-06-07  2:23 ` [PATCH 08/44] ASoC: atmel: sam9x5_wm8731: " Kuninori Morimoto
2019-06-07  2:23 ` [PATCH 09/44] ASoC: atmel: tse850-pcm5142: " Kuninori Morimoto
2019-06-07  2:23 ` [PATCH 10/44] ASoC: fsl: eukrea-tlv320: " Kuninori Morimoto
2019-06-07  2:24 ` [PATCH 11/44] ASoC: fsl: fsl-asoc-card: " Kuninori Morimoto
2019-06-07  2:24 ` [PATCH 12/44] ASoC: fsl: imx-es8328: " Kuninori Morimoto
2019-06-07  2:24 ` [PATCH 13/44] ASoC: fsl: imx-sgtl5000: " Kuninori Morimoto
2019-06-07  2:24 ` [PATCH 14/44] ASoC: fsl: imx-spdif: " Kuninori Morimoto
2019-06-07  2:24 ` [PATCH 15/44] ASoC: fsl: imx-audmix: " Kuninori Morimoto
2019-06-07  2:25 ` [PATCH 16/44] ASoC: kirkwood: armada-370-db: " Kuninori Morimoto
2019-06-07  2:25 ` [PATCH 17/44] ASoC: mxs: mxs-sgtl5000: " Kuninori Morimoto
2019-06-07  2:25 ` [PATCH 18/44] ASoC: qcom: apq8016_sbc: " Kuninori Morimoto
2019-06-07  2:25 ` [PATCH 19/44] ASoC: qcom: storm: " Kuninori Morimoto
2019-06-07  2:26 ` [PATCH 20/44] ASoC: rockchip: rk3288_hdmi_analog: " Kuninori Morimoto
2019-06-07  2:26 ` [PATCH 21/44] ASoC: rockchip: rockchip_max98090: " Kuninori Morimoto
2019-06-07  2:26 ` [PATCH 22/44] ASoC: rockchip: rockchip_rt5645: " Kuninori Morimoto
2019-06-07  2:26 ` [PATCH 23/44] ASoC: samsung: arndale_rt5631: " Kuninori Morimoto
2019-06-07  2:26 ` [PATCH 24/44] ASoC: samsung: smdk_wm8994: " Kuninori Morimoto
2019-06-07  2:26 ` [PATCH 25/44] ASoC: samsung: snow: " Kuninori Morimoto
2019-06-07  2:26 ` [PATCH 26/44] ASoC: samsung: tm2_wm5110: " Kuninori Morimoto
2019-06-07  2:27 ` [PATCH 27/44] ASoC: sirf: sirf-audio: " Kuninori Morimoto
2019-06-07  2:27 ` [PATCH 28/44] ASoC: sunxi: sun4i-codec: " Kuninori Morimoto
2019-06-07  2:27 ` [PATCH 29/44] ASoC: tegra: tegra_alc5632: " Kuninori Morimoto
2019-06-07  2:27 ` [PATCH 30/44] ASoC: tegra: tegra_max98090: " Kuninori Morimoto
2019-06-07  2:27 ` [PATCH 31/44] ASoC: tegra: tegra_rt5640: " Kuninori Morimoto
2019-06-07  2:27 ` [PATCH 32/44] ASoC: tegra: tegra_rt5677: " Kuninori Morimoto
2019-06-07  2:27 ` [PATCH 33/44] ASoC: tegra: tegra_sgtl5000: " Kuninori Morimoto
2019-06-07  2:27 ` [PATCH 34/44] ASoC: tegra: tegra_wm8753: " Kuninori Morimoto
2019-06-07  2:27 ` [PATCH 35/44] ASoC: tegra: tegra_wm8903: " Kuninori Morimoto
2019-06-07  2:28 ` [PATCH 36/44] ASoC: tegra: tegra_wm9712: " Kuninori Morimoto
2019-06-07  2:28 ` [PATCH 37/44] ASoC: tegra: trimslice: " Kuninori Morimoto
2019-06-07  2:28 ` [PATCH 38/44] ASoC: ti: davinci-evm: " Kuninori Morimoto
2019-06-07  2:28 ` [PATCH 39/44] ASoC: ti: omap-abe-twl6040: " Kuninori Morimoto
2019-06-07  2:28 ` [PATCH 40/44] ASoC: ti: omap-hdmi: " Kuninori Morimoto
2019-06-07  2:28 ` [PATCH 41/44] ASoC: ti: omap-twl4030: " Kuninori Morimoto
2019-06-07  2:28 ` [PATCH 42/44] ASoC: ti: rx51: " Kuninori Morimoto
2019-06-07  2:29 ` [PATCH 43/44] ASoC: ux500: mop500: " Kuninori Morimoto
2019-06-07  2:29 ` Kuninori Morimoto [this message]
2019-06-07  3:57 ` [PATCH 00/44] ASoC: no Platform support Kuninori Morimoto
2019-06-07  3:58   ` [PATCH 1/3] ASoC: simple-card-utils: don't select unnecessary Platform Kuninori Morimoto
2019-06-07  3:58   ` [PATCH 2/3] ASoC: qcom: " Kuninori Morimoto
2019-06-07  3:59   ` [PATCH 3/3] ASoC: rockchip: rk3399_gru_sound: " Kuninori Morimoto

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87ftomb5q3.wl-kuninori.morimoto.gx@renesas.com \
    --to=kuninori.morimoto.gx@renesas.com \
    --cc=alsa-devel@alsa-project.org \
    --cc=broonie@kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.