aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/common/sa1111.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/arm/common/sa1111.c')
-rw-r--r--arch/arm/common/sa1111.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/arch/arm/common/sa1111.c b/arch/arm/common/sa1111.c
index b64a3360c8c2..b0f93628dcd7 100644
--- a/arch/arm/common/sa1111.c
+++ b/arch/arm/common/sa1111.c
@@ -1348,6 +1348,14 @@ static int sa1111_bus_resume(struct device *dev)
1348 return ret; 1348 return ret;
1349} 1349}
1350 1350
1351static void sa1111_bus_shutdown(struct device *dev)
1352{
1353 struct sa1111_driver *drv = SA1111_DRV(dev->driver);
1354
1355 if (drv && drv->shutdown)
1356 drv->shutdown(SA1111_DEV(dev));
1357}
1358
1351static int sa1111_bus_probe(struct device *dev) 1359static int sa1111_bus_probe(struct device *dev)
1352{ 1360{
1353 struct sa1111_dev *sadev = SA1111_DEV(dev); 1361 struct sa1111_dev *sadev = SA1111_DEV(dev);
@@ -1377,6 +1385,7 @@ struct bus_type sa1111_bus_type = {
1377 .remove = sa1111_bus_remove, 1385 .remove = sa1111_bus_remove,
1378 .suspend = sa1111_bus_suspend, 1386 .suspend = sa1111_bus_suspend,
1379 .resume = sa1111_bus_resume, 1387 .resume = sa1111_bus_resume,
1388 .shutdown = sa1111_bus_shutdown,
1380}; 1389};
1381EXPORT_SYMBOL(sa1111_bus_type); 1390EXPORT_SYMBOL(sa1111_bus_type);
1382 1391