1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-10-19 22:18:16 +02:00

ar71xx: ar71xx_spi: add shutdown handler

This allows to access the flash from a kexec'd kernel.

SVN-Revision: 29707
This commit is contained in:
Gabor Juhos 2012-01-11 09:14:14 +00:00
parent 09a6e3f662
commit 0f566a376c

@ -243,9 +243,19 @@ static int ar71xx_spi_remove(struct platform_device *pdev)
return 0;
}
static void ar71xx_spi_shutdown(struct platform_device *pdev)
{
int ret;
ret = ar71xx_spi_remove(pdev);
if (ret)
dev_err(&pdev->dev, "shutdown failed with %d\n", ret);
}
static struct platform_driver ar71xx_spi_drv = {
.probe = ar71xx_spi_probe,
.remove = ar71xx_spi_remove,
.shutdown = ar71xx_spi_shutdown,
.driver = {
.name = DRV_NAME,
.owner = THIS_MODULE,