diff mbox

[04/10] spi: fsl-espi: remove usage of mpc8xxx_spi->irq

Message ID 6819df7d-ddfc-49e3-1c70-76e805c5c80f@gmail.com (mailing list archive)
State Accepted
Commit cdb2f77cf520d72a4782354f08deb43db00eff19
Headers show

Commit Message

Heiner Kallweit Nov. 13, 2016, 1:36 p.m. UTC
There's no need to access mpc8xxx_spi->irq, we can use function
parameter irq directly.

Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com>
---
 drivers/spi/spi-fsl-espi.c | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)
diff mbox

Patch

diff --git a/drivers/spi/spi-fsl-espi.c b/drivers/spi/spi-fsl-espi.c
index 29cd4e0..6a011b0 100644
--- a/drivers/spi/spi-fsl-espi.c
+++ b/drivers/spi/spi-fsl-espi.c
@@ -615,8 +615,8 @@  static int fsl_espi_probe(struct device *dev, struct resource *mem,
 	}
 
 	/* Register for SPI Interrupt */
-	ret = devm_request_irq(dev, mpc8xxx_spi->irq, fsl_espi_irq,
-			  0, "fsl_espi", mpc8xxx_spi);
+	ret = devm_request_irq(dev, irq, fsl_espi_irq, 0, "fsl_espi",
+			       mpc8xxx_spi);
 	if (ret)
 		goto err_probe;
 
@@ -675,8 +675,7 @@  static int fsl_espi_probe(struct device *dev, struct resource *mem,
 	if (ret < 0)
 		goto err_pm;
 
-	dev_info(dev, "at 0x%p (irq = %d)\n", mpc8xxx_spi->reg_base,
-		 mpc8xxx_spi->irq);
+	dev_info(dev, "at 0x%p (irq = %u)\n", mpc8xxx_spi->reg_base, irq);
 
 	pm_runtime_mark_last_busy(dev);
 	pm_runtime_put_autosuspend(dev);