All of lore.kernel.org
 help / color / mirror / Atom feed
From: Mark Brown <broonie@kernel.org>
To: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>,
	Mark Brown <broonie@kernel.org>
Cc: alsa-devel@alsa-project.org
Subject: Applied "ASoC: rsnd: move rsnd_ssi_irq() position" to the asoc tree
Date: Sun, 21 Feb 2016 02:15:59 +0900	[thread overview]
Message-ID: <E1aXB8R-0008P1-RJ@finisterre> (raw)
In-Reply-To: <87fuwqtoz8.wl%kuninori.morimoto.gx@renesas.com>

The patch

   ASoC: rsnd: move rsnd_ssi_irq() position

has been applied to the asoc tree at

   git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git 

All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.  

You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.

If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.

Please add any relevant lists and maintainers to the CCs when replying
to this mail.

Thanks,
Mark

>From 615fb6c7b13b7f142f5f8e23e5f8593dd1e7b319 Mon Sep 17 00:00:00 2001
From: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Date: Thu, 18 Feb 2016 08:18:16 +0000
Subject: [PATCH] ASoC: rsnd: move rsnd_ssi_irq() position

prepare for runtime judging for SSI work

Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
---
 sound/soc/sh/rcar/ssi.c | 42 +++++++++++++++++++++---------------------
 1 file changed, 21 insertions(+), 21 deletions(-)

diff --git a/sound/soc/sh/rcar/ssi.c b/sound/soc/sh/rcar/ssi.c
index b5c6f0c..d46bc08 100644
--- a/sound/soc/sh/rcar/ssi.c
+++ b/sound/soc/sh/rcar/ssi.c
@@ -144,27 +144,6 @@ static void rsnd_ssi_status_check(struct rsnd_mod *mod,
 		 rsnd_mod_name(mod), rsnd_mod_id(mod));
 }
 
-static int rsnd_ssi_irq(struct rsnd_mod *mod,
-			struct rsnd_dai_stream *io,
-			struct rsnd_priv *priv,
-			int enable)
-{
-	u32 val = 0;
-
-	if (rsnd_is_gen1(priv))
-		return 0;
-
-	if (rsnd_ssi_is_parent(mod, io))
-		return 0;
-
-	if (enable)
-		val = rsnd_ssi_is_dma_mode(mod) ? 0x0e000000 : 0x0f000000;
-
-	rsnd_mod_write(mod, SSI_INT_ENABLE, val);
-
-	return 0;
-}
-
 u32 rsnd_ssi_multi_slaves(struct rsnd_dai_stream *io)
 {
 	struct rsnd_mod *mod;
@@ -480,6 +459,27 @@ static int rsnd_ssi_stop(struct rsnd_mod *mod,
 	return 0;
 }
 
+static int rsnd_ssi_irq(struct rsnd_mod *mod,
+			struct rsnd_dai_stream *io,
+			struct rsnd_priv *priv,
+			int enable)
+{
+	u32 val = 0;
+
+	if (rsnd_is_gen1(priv))
+		return 0;
+
+	if (rsnd_ssi_is_parent(mod, io))
+		return 0;
+
+	if (enable)
+		val = rsnd_ssi_is_dma_mode(mod) ? 0x0e000000 : 0x0f000000;
+
+	rsnd_mod_write(mod, SSI_INT_ENABLE, val);
+
+	return 0;
+}
+
 static void __rsnd_ssi_interrupt(struct rsnd_mod *mod,
 				 struct rsnd_dai_stream *io)
 {
-- 
2.7.0

  reply	other threads:[~2016-02-20 17:16 UTC|newest]

Thread overview: 23+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-02-18  8:12 [PATCH 0/11] ASoC: rsnd: cleanup SSI multi mode and sequence Kuninori Morimoto
2016-02-18  8:13 ` [PATCH 01/11] ASoC: rsnd: rename RSND_DVC_CHANNELS to RSND_MAX_CHANNELS Kuninori Morimoto
2016-02-20 17:16   ` Applied "ASoC: rsnd: rename RSND_DVC_CHANNELS to RSND_MAX_CHANNELS" to the asoc tree Mark Brown
2016-02-18  8:13 ` [PATCH 02/11] ASoC: rsnd: setup SRC_ROUTE_MODE0 before SRC_SRCIR Kuninori Morimoto
2016-02-20 17:16   ` Applied "ASoC: rsnd: setup SRC_ROUTE_MODE0 before SRC_SRCIR" to the asoc tree Mark Brown
2016-02-18  8:14 ` [PATCH 03/11] ASoC: rsnd: indicates status failed SSI Kuninori Morimoto
2016-02-20 17:16   ` Applied "ASoC: rsnd: indicates status failed SSI" to the asoc tree Mark Brown
2016-02-18  8:14 ` [PATCH 04/11] ASoC: rsnd: SSI function parameter uses "mod" instead of "ssi" Kuninori Morimoto
2016-02-20 17:16   ` Applied "ASoC: rsnd: SSI function parameter uses "mod" instead of "ssi"" to the asoc tree Mark Brown
2016-02-18  8:16 ` [PATCH 05/11] ASoC: rsnd: fixup forever loop bug on SSI Kuninori Morimoto
2016-02-20 17:16   ` Applied "ASoC: rsnd: fixup forever loop bug on SSI" to the asoc tree Mark Brown
2016-02-18  8:16 ` [PATCH 06/11] ASoC: rsnd: add missing .irq callback for DMA Kuninori Morimoto
2016-02-20 17:16   ` Applied "ASoC: rsnd: add missing .irq callback for DMA" to the asoc tree Mark Brown
2016-02-18  8:17 ` [PATCH 07/11] ASoC: rsnd: tidyup SSI init/start sequence Kuninori Morimoto
2016-02-20 17:16   ` Applied "ASoC: rsnd: tidyup SSI init/start sequence" to the asoc tree Mark Brown
2016-02-18  8:17 ` [PATCH 08/11] ASoC: rsnd: Parent SSI attach is not needed if not clock master Kuninori Morimoto
2016-02-20 17:16   ` Applied "ASoC: rsnd: Parent SSI attach is not needed if not clock master" to the asoc tree Mark Brown
2016-02-18  8:18 ` [PATCH 09/11] ASoC: rsnd: move rsnd_ssi_irq() position Kuninori Morimoto
2016-02-20 17:15   ` Mark Brown [this message]
2016-02-18  8:18 ` [PATCH 10/11] ASoC: rsnd: judge multi SSI in runtime Kuninori Morimoto
2016-02-20 17:15   ` Applied "ASoC: rsnd: judge multi SSI in runtime" to the asoc tree Mark Brown
2016-02-18  8:19 ` [PATCH 11/11] ASoC: rsnd: judge work SSI in runtime Kuninori Morimoto
2016-02-20 17:15   ` Applied "ASoC: rsnd: judge work SSI in runtime" to the asoc tree Mark Brown

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=E1aXB8R-0008P1-RJ@finisterre \
    --to=broonie@kernel.org \
    --cc=alsa-devel@alsa-project.org \
    --cc=kuninori.morimoto.gx@renesas.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.