All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ASoC: fsi: remove unused irq
@ 2013-03-11  1:20 Kuninori Morimoto
  2013-03-12 18:45 ` Mark Brown
  0 siblings, 1 reply; 4+ messages in thread
From: Kuninori Morimoto @ 2013-03-11  1:20 UTC (permalink / raw)
  To: Mark Brown; +Cc: Linux-ALSA, Simon, Liam Girdwood, Kuninori Morimoto

FSI is using devm_request_irq() from
1ddd82868cc888e008ed520465c172a6cdddd689
(ASoC: fsi: use devm_request_irq())

master->irq is no longer needed.

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

diff --git a/sound/soc/sh/fsi.c b/sound/soc/sh/fsi.c
index a606d0f..7a874a3 100644
--- a/sound/soc/sh/fsi.c
+++ b/sound/soc/sh/fsi.c
@@ -300,7 +300,6 @@ struct fsi_core {
 
 struct fsi_master {
 	void __iomem *base;
-	int irq;
 	struct fsi_priv fsia;
 	struct fsi_priv fsib;
 	struct fsi_core *core;
@@ -2086,7 +2085,6 @@ static int fsi_probe(struct platform_device *pdev)
 	}
 
 	/* master setting */
-	master->irq		= irq;
 	master->core		= (struct fsi_core *)id_entry->driver_data;
 	spin_lock_init(&master->lock);
 
-- 
1.7.9.5

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

* Re: [PATCH] ASoC: fsi: remove unused irq
  2013-03-11  1:20 [PATCH] ASoC: fsi: remove unused irq Kuninori Morimoto
@ 2013-03-12 18:45 ` Mark Brown
  2013-03-13  0:41   ` [PATCH v2] " Kuninori Morimoto
  0 siblings, 1 reply; 4+ messages in thread
From: Mark Brown @ 2013-03-12 18:45 UTC (permalink / raw)
  To: Kuninori Morimoto; +Cc: Linux-ALSA, Simon, Liam Girdwood, Kuninori Morimoto


[-- Attachment #1.1: Type: text/plain, Size: 293 bytes --]

On Sun, Mar 10, 2013 at 06:20:47PM -0700, Kuninori Morimoto wrote:
> FSI is using devm_request_irq() from
> 1ddd82868cc888e008ed520465c172a6cdddd689
> (ASoC: fsi: use devm_request_irq())

This doesn't apply against v3.9-rc2 and there's no pending fsi patches,
can you please check and resend?

[-- Attachment #1.2: Digital signature --]
[-- Type: application/pgp-signature, Size: 836 bytes --]

[-- Attachment #2: Type: text/plain, Size: 0 bytes --]



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

* [PATCH v2] ASoC: fsi: remove unused irq
  2013-03-12 18:45 ` Mark Brown
@ 2013-03-13  0:41   ` Kuninori Morimoto
  2013-03-13 10:40     ` Mark Brown
  0 siblings, 1 reply; 4+ messages in thread
From: Kuninori Morimoto @ 2013-03-13  0:41 UTC (permalink / raw)
  To: Mark Brown; +Cc: Linux-ALSA, Simon, Liam Girdwood, Kuninori Morimoto

FSI is using devm_request_irq() from
1ddd82868cc888e008ed520465c172a6cdddd689
(ASoC: fsi: use devm_request_irq())

master->irq is no longer needed.

Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
---
v1 -> v2

 - based on v3.9-rc2 (linus/master branch)

 sound/soc/sh/fsi.c |    2 --
 1 file changed, 2 deletions(-)

diff --git a/sound/soc/sh/fsi.c b/sound/soc/sh/fsi.c
index c724026a..8b91a15 100644
--- a/sound/soc/sh/fsi.c
+++ b/sound/soc/sh/fsi.c
@@ -296,7 +296,6 @@ struct fsi_core {
 
 struct fsi_master {
 	void __iomem *base;
-	int irq;
 	struct fsi_priv fsia;
 	struct fsi_priv fsib;
 	const struct fsi_core *core;
@@ -2002,7 +2001,6 @@ static int fsi_probe(struct platform_device *pdev)
 	}
 
 	/* master setting */
-	master->irq		= irq;
 	master->core		= core;
 	spin_lock_init(&master->lock);
 
-- 
1.7.9.5

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

* Re: [PATCH v2] ASoC: fsi: remove unused irq
  2013-03-13  0:41   ` [PATCH v2] " Kuninori Morimoto
@ 2013-03-13 10:40     ` Mark Brown
  0 siblings, 0 replies; 4+ messages in thread
From: Mark Brown @ 2013-03-13 10:40 UTC (permalink / raw)
  To: Kuninori Morimoto; +Cc: Linux-ALSA, Simon, Liam Girdwood, Kuninori Morimoto


[-- Attachment #1.1: Type: text/plain, Size: 251 bytes --]

On Tue, Mar 12, 2013 at 05:41:54PM -0700, Kuninori Morimoto wrote:
> FSI is using devm_request_irq() from
> 1ddd82868cc888e008ed520465c172a6cdddd689
> (ASoC: fsi: use devm_request_irq())
> 
> master->irq is no longer needed.

Applied, thanks.

[-- Attachment #1.2: Digital signature --]
[-- Type: application/pgp-signature, Size: 836 bytes --]

[-- Attachment #2: Type: text/plain, Size: 0 bytes --]



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

end of thread, other threads:[~2013-03-13 10:40 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-03-11  1:20 [PATCH] ASoC: fsi: remove unused irq Kuninori Morimoto
2013-03-12 18:45 ` Mark Brown
2013-03-13  0:41   ` [PATCH v2] " Kuninori Morimoto
2013-03-13 10:40     ` Mark Brown

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.