mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-30 22:29:43 +02:00
ar71xx: pb44_spi: add shutdown handler
This allows to access the flash from a kexec'd kernel. git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29710 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
7bb349bc59
commit
6734a832bc
@ -278,9 +278,19 @@ static int pb44_spi_remove(struct platform_device *pdev)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void pb44_spi_shutdown(struct platform_device *pdev)
|
||||||
|
{
|
||||||
|
int ret;
|
||||||
|
|
||||||
|
ret = pb44_spi_remove(pdev);
|
||||||
|
if (ret)
|
||||||
|
dev_err(&pdev->dev, "shutdown failed with %d\n", ret);
|
||||||
|
}
|
||||||
|
|
||||||
static struct platform_driver pb44_spi_drv = {
|
static struct platform_driver pb44_spi_drv = {
|
||||||
.probe = pb44_spi_probe,
|
.probe = pb44_spi_probe,
|
||||||
.remove = pb44_spi_remove,
|
.remove = pb44_spi_remove,
|
||||||
|
.shutdown = pb44_spi_shutdown,
|
||||||
.driver = {
|
.driver = {
|
||||||
.name = DRV_NAME,
|
.name = DRV_NAME,
|
||||||
.owner = THIS_MODULE,
|
.owner = THIS_MODULE,
|
||||||
|
Loading…
Reference in New Issue
Block a user