alsa-devel.alsa-project.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] ASoC: Remove unused rate variable in magician_playback_hw_params
@ 2011-10-02 13:05 Axel Lin
  2011-10-02 13:07 ` [PATCH 2/2] ASoC: Remove unused srate variable in tegra_spdif_hw_params Axel Lin
  2011-10-02 19:00 ` [PATCH 1/2] ASoC: Remove unused rate variable in magician_playback_hw_params Mark Brown
  0 siblings, 2 replies; 4+ messages in thread
From: Axel Lin @ 2011-10-02 13:05 UTC (permalink / raw)
  To: linux-kernel
  Cc: alsa-devel, Mark Brown, Eric Miao, Liam Girdwood, Philipp Zabel

Signed-off-by: Axel Lin <axel.lin@gmail.com>
---
 sound/soc/pxa/magician.c |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

diff --git a/sound/soc/pxa/magician.c b/sound/soc/pxa/magician.c
index 67dcc36..098e5f4 100644
--- a/sound/soc/pxa/magician.c
+++ b/sound/soc/pxa/magician.c
@@ -92,11 +92,10 @@ static int magician_playback_hw_params(struct snd_pcm_substream *substream,
 	struct snd_soc_pcm_runtime *rtd = substream->private_data;
 	struct snd_soc_dai *codec_dai = rtd->codec_dai;
 	struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
-	unsigned int acps, acds, width, rate;
+	unsigned int acps, acds, width;
 	unsigned int div4 = PXA_SSP_CLK_SCDB_4;
 	int ret = 0;
 
-	rate = params_rate(params);
 	width = snd_pcm_format_physical_width(params_format(params));
 
 	/*
-- 
1.7.4.1

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH 2/2] ASoC: Remove unused srate variable in tegra_spdif_hw_params
  2011-10-02 13:05 [PATCH 1/2] ASoC: Remove unused rate variable in magician_playback_hw_params Axel Lin
@ 2011-10-02 13:07 ` Axel Lin
  2011-10-02 19:00   ` Mark Brown
  2011-10-02 19:00 ` [PATCH 1/2] ASoC: Remove unused rate variable in magician_playback_hw_params Mark Brown
  1 sibling, 1 reply; 4+ messages in thread
From: Axel Lin @ 2011-10-02 13:07 UTC (permalink / raw)
  To: linux-kernel; +Cc: alsa-devel, Brown, Stephen Warren, Liam Girdwood, Mark

Signed-off-by: Axel Lin <axel.lin@gmail.com>
---
 sound/soc/tegra/tegra_spdif.c |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

diff --git a/sound/soc/tegra/tegra_spdif.c b/sound/soc/tegra/tegra_spdif.c
index 1bd07d1..dd11d0c 100644
--- a/sound/soc/tegra/tegra_spdif.c
+++ b/sound/soc/tegra/tegra_spdif.c
@@ -127,7 +127,7 @@ static int tegra_spdif_hw_params(struct snd_pcm_substream *substream,
 {
 	struct device *dev = substream->pcm->card->dev;
 	struct tegra_spdif *spdif = snd_soc_dai_get_drvdata(dai);
-	int ret, srate, spdifclock;
+	int ret, spdifclock;
 
 	spdif->reg_ctrl &= ~TEGRA_SPDIF_CTRL_PACK;
 	spdif->reg_ctrl &= ~TEGRA_SPDIF_CTRL_BIT_MODE_MASK;
@@ -140,7 +140,6 @@ static int tegra_spdif_hw_params(struct snd_pcm_substream *substream,
 		return -EINVAL;
 	}
 
-	srate = params_rate(params);
 	switch (params_rate(params)) {
 	case 32000:
 		spdifclock = 4096000;
-- 
1.7.4.1

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH 1/2] ASoC: Remove unused rate variable in magician_playback_hw_params
  2011-10-02 13:05 [PATCH 1/2] ASoC: Remove unused rate variable in magician_playback_hw_params Axel Lin
  2011-10-02 13:07 ` [PATCH 2/2] ASoC: Remove unused srate variable in tegra_spdif_hw_params Axel Lin
@ 2011-10-02 19:00 ` Mark Brown
  1 sibling, 0 replies; 4+ messages in thread
From: Mark Brown @ 2011-10-02 19:00 UTC (permalink / raw)
  To: Axel Lin
  Cc: alsa-devel, Eric Miao, linux-kernel, Philipp Zabel, Liam Girdwood

On Sun, Oct 02, 2011 at 09:05:56PM +0800, Axel Lin wrote:
> Signed-off-by: Axel Lin <axel.lin@gmail.com>

Applied, thanks.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH 2/2] ASoC: Remove unused srate variable in tegra_spdif_hw_params
  2011-10-02 13:07 ` [PATCH 2/2] ASoC: Remove unused srate variable in tegra_spdif_hw_params Axel Lin
@ 2011-10-02 19:00   ` Mark Brown
  0 siblings, 0 replies; 4+ messages in thread
From: Mark Brown @ 2011-10-02 19:00 UTC (permalink / raw)
  To: Axel Lin; +Cc: alsa-devel, Stephen Warren, linux-kernel, Liam Girdwood

On Sun, Oct 02, 2011 at 09:07:02PM +0800, Axel Lin wrote:
> Signed-off-by: Axel Lin <axel.lin@gmail.com>

Applied, thanks.

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2011-10-02 19:00 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-10-02 13:05 [PATCH 1/2] ASoC: Remove unused rate variable in magician_playback_hw_params Axel Lin
2011-10-02 13:07 ` [PATCH 2/2] ASoC: Remove unused srate variable in tegra_spdif_hw_params Axel Lin
2011-10-02 19:00   ` Mark Brown
2011-10-02 19:00 ` [PATCH 1/2] ASoC: Remove unused rate variable in magician_playback_hw_params Mark Brown

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).