aboutsummaryrefslogtreecommitdiffstats
path: root/sound
diff options
context:
space:
mode:
authorKuninori Morimoto <kuninori.morimoto.gx@renesas.com>2013-03-12 20:41:54 -0400
committerMark Brown <broonie@opensource.wolfsonmicro.com>2013-03-13 06:40:05 -0400
commit9c3372898323cb9596a23097e939df3bd83de5fc (patch)
tree7d64273e4e83f58c507602c430b40d3b710b54ee /sound
parentf6161aa153581da4a3867a2d1a7caf4be19b6ec9 (diff)
ASoC: fsi: remove unused irq
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> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'sound')
-rw-r--r--sound/soc/sh/fsi.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/sound/soc/sh/fsi.c b/sound/soc/sh/fsi.c
index c724026a246f..8b91a15110e0 100644
--- a/sound/soc/sh/fsi.c
+++ b/sound/soc/sh/fsi.c
@@ -296,7 +296,6 @@ struct fsi_core {
296 296
297struct fsi_master { 297struct fsi_master {
298 void __iomem *base; 298 void __iomem *base;
299 int irq;
300 struct fsi_priv fsia; 299 struct fsi_priv fsia;
301 struct fsi_priv fsib; 300 struct fsi_priv fsib;
302 const struct fsi_core *core; 301 const struct fsi_core *core;
@@ -2002,7 +2001,6 @@ static int fsi_probe(struct platform_device *pdev)
2002 } 2001 }
2003 2002
2004 /* master setting */ 2003 /* master setting */
2005 master->irq = irq;
2006 master->core = core; 2004 master->core = core;
2007 spin_lock_init(&master->lock); 2005 spin_lock_init(&master->lock);
2008 2006