All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Subhransu S. Prusty" <subhransu.s.prusty@intel.com>
To: alsa-devel@alsa-project.org
Cc: tiwai@suse.de, patches.audio@intel.com,
	liam.r.girdwood@linux.intel.com,
	Vinod Koul <vinod.koul@intel.com>,
	broonie@kernel.org, Jeeja KP <jeeja.kp@intel.com>,
	"Subhransu S. Prusty" <subhransu.s.prusty@intel.com>
Subject: [PATCH 13/13] ASoC: Intel: Skylake: Remove CPU dai that is not used
Date: Fri,  7 Aug 2015 23:52:29 +0530	[thread overview]
Message-ID: <1438971749-874-14-git-send-email-subhransu.s.prusty@intel.com> (raw)
In-Reply-To: <1438971749-874-1-git-send-email-subhransu.s.prusty@intel.com>

From: Jeeja KP <jeeja.kp@intel.com>

For each endpoint instance, need to create CPU dai,
Removed unused CPU dai DMIC23/HDA-SPK/HDA-AMIC dais.

Signed-off-by: Jeeja KP <jeeja.kp@intel.com>
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
Signed-off-by: Subhransu S. Prusty <subhransu.s.prusty@intel.com>
---
 sound/soc/intel/skylake/skl-pcm.c | 33 ---------------------------------
 1 file changed, 33 deletions(-)

diff --git a/sound/soc/intel/skylake/skl-pcm.c b/sound/soc/intel/skylake/skl-pcm.c
index 045c7d4..22ab7ac 100644
--- a/sound/soc/intel/skylake/skl-pcm.c
+++ b/sound/soc/intel/skylake/skl-pcm.c
@@ -579,17 +579,6 @@ static struct snd_soc_dai_driver skl_platform_dai[] = {
 	},
 },
 {
-	.name = "DMIC23 Pin",
-	.ops = &skl_dmic_dai_ops,
-	.capture = {
-		.stream_name = "DMIC23 Rx",
-		.channels_min = HDA_STEREO,
-		.channels_max = HDA_STEREO,
-		.rates = SNDRV_PCM_RATE_48000 | SNDRV_PCM_RATE_16000,
-		.formats = SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S24_LE,
-	},
-},
-{
 	.name = "HD-Codec Pin",
 	.ops = &skl_link_dai_ops,
 	.playback = {
@@ -607,28 +596,6 @@ static struct snd_soc_dai_driver skl_platform_dai[] = {
 		.formats = SNDRV_PCM_FMTBIT_S16_LE,
 	},
 },
-{
-	.name = "HD-Codec-SPK Pin",
-	.ops = &skl_link_dai_ops,
-	.playback = {
-		.stream_name = "HD-Codec-SPK Tx",
-		.channels_min = HDA_STEREO,
-		.channels_max = HDA_STEREO,
-		.rates = SNDRV_PCM_RATE_48000,
-		.formats = SNDRV_PCM_FMTBIT_S16_LE,
-	},
-},
-{
-	.name = "HD-Codec-AMIC Pin",
-	.ops = &skl_link_dai_ops,
-	.capture = {
-		.stream_name = "HD-Codec-AMIC Rx",
-		.channels_min = HDA_STEREO,
-		.channels_max = HDA_STEREO,
-		.rates = SNDRV_PCM_RATE_48000,
-		.formats = SNDRV_PCM_FMTBIT_S16_LE,
-	},
-},
 };
 
 static int skl_platform_open(struct snd_pcm_substream *substream)
-- 
2.4.3

  parent reply	other threads:[~2015-08-07 18:23 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-08-07 18:22 [PATCH 00/13] Add DSP topology management for SKL Subhransu S. Prusty
2015-08-07 18:22 ` [PATCH 01/13] ASoC: Intel: Skylake: Add helpers for DSP module configuration Subhransu S. Prusty
2015-08-07 18:22 ` [PATCH 02/13] ASoC: Intel: Skylake: Add helpers for SRC and converter modules Subhransu S. Prusty
2015-08-07 18:22 ` [PATCH 03/13] ASoC: Intel: Skylake: Add DSP module init and binding routines Subhransu S. Prusty
2015-08-07 18:22 ` [PATCH 04/13] ASoC: Intel: Skylake: Add pipe management helpers Subhransu S. Prusty
2015-08-07 18:22 ` [PATCH 05/13] ASoC: Intel: Skylake: Add pipe and modules handlers Subhransu S. Prusty
2015-08-07 18:22 ` [PATCH 06/13] ASoC: Intel: Skylake: Add module configuration helpers Subhransu S. Prusty
2015-08-07 18:22 ` [PATCH 07/13] ASoC: Intel: Skylake: add DSP platform widget event handlers Subhransu S. Prusty
2015-08-07 18:22 ` [PATCH 08/13] ASoC: Intel: Skylake: Add FE and BE hw_params handling Subhransu S. Prusty
2015-08-07 18:22 ` [PATCH 09/13] ASoC: Intel: Skylake: Add topology core init and handlers Subhransu S. Prusty
2015-08-07 18:22 ` [PATCH 10/13] ASoC: Intel: Skylake: Initialize and load DSP controls Subhransu S. Prusty
2015-08-07 18:22 ` [PATCH 11/13] ASoC: Intel: Skylake: Add DSP support and enable it Subhransu S. Prusty
2015-10-07 15:05   ` Applied "ASoC: Intel: Skylake: Add DSP support and enable it" to the asoc tree Mark Brown
2015-08-07 18:22 ` [PATCH 12/13] ASoC: Intel: Skylake: Initialize NHLT table Subhransu S. Prusty
2015-10-07 15:05   ` Applied "ASoC: Intel: Skylake: Initialize NHLT table" to the asoc tree Mark Brown
2015-08-07 18:22 ` Subhransu S. Prusty [this message]
2015-09-20  0:13   ` Applied "ASoC: Intel: Skylake: Remove unused CPU dais" " Mark Brown
2015-08-07 18:59 ` [alsa-devel] [PATCH 00/13] Add DSP topology management for SKL Subhransu S. Prusty
2015-08-07 18:59 ` Subhransu S. Prusty

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=1438971749-874-14-git-send-email-subhransu.s.prusty@intel.com \
    --to=subhransu.s.prusty@intel.com \
    --cc=alsa-devel@alsa-project.org \
    --cc=broonie@kernel.org \
    --cc=jeeja.kp@intel.com \
    --cc=liam.r.girdwood@linux.intel.com \
    --cc=patches.audio@intel.com \
    --cc=tiwai@suse.de \
    --cc=vinod.koul@intel.com \
    /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.