All of lore.kernel.org
 help / color / mirror / Atom feed
From: Takashi Iwai <tiwai@suse.de>
To: alsa-devel@alsa-project.org
Cc: Vinod Koul <vinod.koul@intel.com>, Jeeja KP <jeeja.kp@intel.com>,
	Liam Girdwood <liam.r.girdwood@intel.com>
Subject: [PATCH 11/16] ALSA: hda - Minor refactoring
Date: Thu, 16 Apr 2015 18:14:25 +0200	[thread overview]
Message-ID: <1429200870-5288-12-git-send-email-tiwai@suse.de> (raw)
In-Reply-To: <1429200870-5288-1-git-send-email-tiwai@suse.de>

Move the small portion of the common sequence in hda_intel.c and
hda_tegra.c into hda_controller.c.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
---
 sound/pci/hda/hda_controller.c | 10 +++++++---
 sound/pci/hda/hda_intel.c      |  3 ---
 sound/pci/hda/hda_tegra.c      |  3 ---
 3 files changed, 7 insertions(+), 9 deletions(-)

diff --git a/sound/pci/hda/hda_controller.c b/sound/pci/hda/hda_controller.c
index 21058b41b2c6..aaf01e841426 100644
--- a/sound/pci/hda/hda_controller.c
+++ b/sound/pci/hda/hda_controller.c
@@ -107,18 +107,22 @@ static int azx_pcm_hw_params(struct snd_pcm_substream *substream,
 {
 	struct azx_pcm *apcm = snd_pcm_substream_chip(substream);
 	struct azx *chip = apcm->chip;
+	struct azx_dev *azx_dev = get_azx_dev(substream);
 	int ret;
 
-	dsp_lock(get_azx_dev(substream));
-	if (dsp_is_locked(get_azx_dev(substream))) {
+	dsp_lock(azx_dev);
+	if (dsp_is_locked(azx_dev)) {
 		ret = -EBUSY;
 		goto unlock;
 	}
 
+	azx_dev->core.bufsize = 0;
+	azx_dev->core.period_bytes = 0;
+	azx_dev->core.format_val = 0;
 	ret = chip->ops->substream_alloc_pages(chip, substream,
 					  params_buffer_bytes(hw_params));
 unlock:
-	dsp_unlock(get_azx_dev(substream));
+	dsp_unlock(azx_dev);
 	return ret;
 }
 
diff --git a/sound/pci/hda/hda_intel.c b/sound/pci/hda/hda_intel.c
index 9dff693005ea..8a1471851ca7 100644
--- a/sound/pci/hda/hda_intel.c
+++ b/sound/pci/hda/hda_intel.c
@@ -1743,9 +1743,6 @@ static int substream_alloc_pages(struct azx *chip,
 	int ret;
 
 	mark_runtime_wc(chip, azx_dev, substream, false);
-	azx_dev->core.bufsize = 0;
-	azx_dev->core.period_bytes = 0;
-	azx_dev->core.format_val = 0;
 	ret = snd_pcm_lib_malloc_pages(substream, size);
 	if (ret < 0)
 		return ret;
diff --git a/sound/pci/hda/hda_tegra.c b/sound/pci/hda/hda_tegra.c
index 397e1821020f..d5349809f43d 100644
--- a/sound/pci/hda/hda_tegra.c
+++ b/sound/pci/hda/hda_tegra.c
@@ -104,9 +104,6 @@ static int substream_alloc_pages(struct azx *chip,
 {
 	struct azx_dev *azx_dev = get_azx_dev(substream);
 
-	azx_dev->core.bufsize = 0;
-	azx_dev->core.period_bytes = 0;
-	azx_dev->core.format_val = 0;
 	return snd_pcm_lib_malloc_pages(substream, size);
 }
 
-- 
2.3.5

  parent reply	other threads:[~2015-04-16 16:14 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-04-16 16:14 [PATCH 00/16] HD-audio core controller split Takashi Iwai
2015-04-16 16:14 ` [PATCH 01/16] ALSA: hda - Handle error from get_response bus ops directly Takashi Iwai
2015-04-16 16:14 ` [PATCH 02/16] ALSA: hda - Add the controller helper codes to hda-core module Takashi Iwai
2015-04-16 16:14 ` [PATCH 03/16] ALSA: hda - Add DSP loader to core library code Takashi Iwai
2015-04-16 16:14 ` [PATCH 04/16] ALSA: hda - moved alloc/free stream pages function to controller library Takashi Iwai
2015-04-16 16:14 ` [PATCH 05/16] ALSA: hda - Merge codec and controller helpers Takashi Iwai
2015-04-16 16:14 ` [PATCH 06/16] ALSA: hda - Move send_cmd / get_response to hdac_bus_ops Takashi Iwai
2015-04-16 16:14 ` [PATCH 07/16] ALSA: hda - Pass bus io_ops directly from the top-level driver Takashi Iwai
2015-04-16 16:14 ` [PATCH 08/16] ALSA: hda - Migrate hdac_stream into legacy driver Takashi Iwai
2015-04-16 16:14 ` [PATCH 09/16] ALSA: hda - Migrate more hdac_stream codes Takashi Iwai
2015-04-16 16:14 ` [PATCH 10/16] ALSA: hda - Embed bus into controller object Takashi Iwai
2015-04-16 16:14 ` Takashi Iwai [this message]
2015-04-16 16:14 ` [PATCH 12/16] ALSA: hda - Move PCM format and rate handling code to core library Takashi Iwai
2015-04-16 16:14 ` [PATCH 13/16] ALSA: hda - Add missing inclusion of <linux/clocksource.h> Takashi Iwai
2015-04-16 16:14 ` [PATCH 14/16] ALSA: hda - Reenable tracepoints for controller Takashi Iwai
2015-04-16 16:14 ` [PATCH 15/16] ALSA: hda/tegra - Fix build error and warning Takashi Iwai
2015-04-16 16:14 ` [PATCH 16/16] ALSA: hda - Drop azx_sd_read*/write*() macros Takashi Iwai

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=1429200870-5288-12-git-send-email-tiwai@suse.de \
    --to=tiwai@suse.de \
    --cc=alsa-devel@alsa-project.org \
    --cc=jeeja.kp@intel.com \
    --cc=liam.r.girdwood@intel.com \
    --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.