atmel/spi: fix missing probe
Commit 940ab889
"drivercore: Add helper macro for platform_driver boilerplate"
converted this driver to use module_platform_driver, but due to the use
of platform_driver_probe(), this resulted in the call to atmel_spi_probe being
lost. Place the call to this function into the driver structure.
fix section missmatch
atmel_spi_probe is marked __init where it's supposed to be __devinit
atmel_spi_remove is marked __exit where it's supposed to be __devexit
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Cc: Greg Kroah-Hartman <gregkh@suse.de>
Cc: Grant Likely <grant.likely@secretlab.ca>
Cc: Russell King - ARM Linux <linux@arm.linux.org.uk>
Acked-by: Nicolas Ferre <nicolas.ferre@atmel.com>
This commit is contained in:
@@ -907,7 +907,7 @@ static void atmel_spi_cleanup(struct spi_device *spi)
|
|||||||
|
|
||||||
/*-------------------------------------------------------------------------*/
|
/*-------------------------------------------------------------------------*/
|
||||||
|
|
||||||
static int __init atmel_spi_probe(struct platform_device *pdev)
|
static int __devinit atmel_spi_probe(struct platform_device *pdev)
|
||||||
{
|
{
|
||||||
struct resource *regs;
|
struct resource *regs;
|
||||||
int irq;
|
int irq;
|
||||||
@@ -1003,7 +1003,7 @@ out_free:
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int __exit atmel_spi_remove(struct platform_device *pdev)
|
static int __devexit atmel_spi_remove(struct platform_device *pdev)
|
||||||
{
|
{
|
||||||
struct spi_master *master = platform_get_drvdata(pdev);
|
struct spi_master *master = platform_get_drvdata(pdev);
|
||||||
struct atmel_spi *as = spi_master_get_devdata(master);
|
struct atmel_spi *as = spi_master_get_devdata(master);
|
||||||
@@ -1072,6 +1072,7 @@ static struct platform_driver atmel_spi_driver = {
|
|||||||
},
|
},
|
||||||
.suspend = atmel_spi_suspend,
|
.suspend = atmel_spi_suspend,
|
||||||
.resume = atmel_spi_resume,
|
.resume = atmel_spi_resume,
|
||||||
|
.probe = atmel_spi_probe,
|
||||||
.remove = __exit_p(atmel_spi_remove),
|
.remove = __exit_p(atmel_spi_remove),
|
||||||
};
|
};
|
||||||
module_platform_driver(atmel_spi_driver);
|
module_platform_driver(atmel_spi_driver);
|
||||||
|
Reference in New Issue
Block a user