diff options
Diffstat (limited to 'drivers/mtd/nand/lpc32xx_slc.c')
| -rw-r--r-- | drivers/mtd/nand/lpc32xx_slc.c | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/mtd/nand/lpc32xx_slc.c b/drivers/mtd/nand/lpc32xx_slc.c index 32409c45d47..030b78c6289 100644 --- a/drivers/mtd/nand/lpc32xx_slc.c +++ b/drivers/mtd/nand/lpc32xx_slc.c @@ -755,7 +755,7 @@ static struct lpc32xx_nand_cfg_slc *lpc32xx_parse_dt(struct device *dev)  /*   * Probe for NAND controller   */ -static int __devinit lpc32xx_nand_probe(struct platform_device *pdev) +static int lpc32xx_nand_probe(struct platform_device *pdev)  {  	struct lpc32xx_nand_host *host;  	struct mtd_info *mtd; @@ -949,7 +949,7 @@ err_exit1:  /*   * Remove NAND device.   */ -static int __devexit lpc32xx_nand_remove(struct platform_device *pdev) +static int lpc32xx_nand_remove(struct platform_device *pdev)  {  	uint32_t tmp;  	struct lpc32xx_nand_host *host = platform_get_drvdata(pdev); @@ -1021,7 +1021,7 @@ MODULE_DEVICE_TABLE(of, lpc32xx_nand_match);  static struct platform_driver lpc32xx_nand_driver = {  	.probe		= lpc32xx_nand_probe, -	.remove		= __devexit_p(lpc32xx_nand_remove), +	.remove		= lpc32xx_nand_remove,  	.resume		= lpc32xx_nand_resume,  	.suspend	= lpc32xx_nand_suspend,  	.driver		= {  |