spi: atmel: trivial: move info banner to latest probe action
authorNicolas Ferre <nicolas.ferre@atmel.com>
Thu, 24 Nov 2016 11:24:57 +0000 (12:24 +0100)
committerMark Brown <broonie@kernel.org>
Fri, 25 Nov 2016 13:07:08 +0000 (13:07 +0000)
The info banner is here to tell that everything went well, so place
it at the very end of the probe function.

Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
drivers/spi/spi-atmel.c

index b2931493cab2fb0ee825cbea4f69317f52436ea0..a9ae1836e1e263e9866fdb2a3b9503ddccfafcf3 100644 (file)
@@ -1654,10 +1654,6 @@ static int atmel_spi_probe(struct platform_device *pdev)
                spi_writel(as, CR, SPI_BIT(FIFOEN));
        }
 
-       /* go! */
-       dev_info(&pdev->dev, "Atmel SPI Controller at 0x%08lx (irq %d)\n",
-                       (unsigned long)regs->start, irq);
-
        pm_runtime_set_autosuspend_delay(&pdev->dev, AUTOSUSPEND_TIMEOUT);
        pm_runtime_use_autosuspend(&pdev->dev);
        pm_runtime_set_active(&pdev->dev);
@@ -1667,6 +1663,10 @@ static int atmel_spi_probe(struct platform_device *pdev)
        if (ret)
                goto out_free_dma;
 
+       /* go! */
+       dev_info(&pdev->dev, "Atmel SPI Controller at 0x%08lx (irq %d)\n",
+                       (unsigned long)regs->start, irq);
+
        return 0;
 
 out_free_dma: