aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/plat-omap/omap_device.c
diff options
context:
space:
mode:
authorKevin Hilman <khilman@ti.com>2012-07-10 14:13:16 -0400
committerKevin Hilman <khilman@ti.com>2012-09-12 13:51:49 -0400
commite753345bec8fef81d1e87710917f89dc75f39b2a (patch)
tree16ea644456b7caf76baf9bae2fb9c9228778a2cb /arch/arm/plat-omap/omap_device.c
parent0d7614f09c1ebdbaa1599a5aba7593f147bf96ee (diff)
ARM: OMAP: omap_device: keep track of driver bound status
Use the bus notifier to keep track of driver bound status by adding a new internal field to struct omap_device: _driver_status. This will be useful for follow-up patches which need to know whether or not a driver is bound in order to make intelligent omap_device enable/idle decisions. Reviewed-by: Paul Walmsley <paul@pwsan.com> Signed-off-by: Kevin Hilman <khilman@ti.com>
Diffstat (limited to 'arch/arm/plat-omap/omap_device.c')
-rw-r--r--arch/arm/plat-omap/omap_device.c14
1 files changed, 9 insertions, 5 deletions
diff --git a/arch/arm/plat-omap/omap_device.c b/arch/arm/plat-omap/omap_device.c
index c490240bb82..1d1b5ff7830 100644
--- a/arch/arm/plat-omap/omap_device.c
+++ b/arch/arm/plat-omap/omap_device.c
@@ -385,17 +385,21 @@ static int _omap_device_notifier_call(struct notifier_block *nb,
385 unsigned long event, void *dev) 385 unsigned long event, void *dev)
386{ 386{
387 struct platform_device *pdev = to_platform_device(dev); 387 struct platform_device *pdev = to_platform_device(dev);
388 struct omap_device *od;
388 389
389 switch (event) { 390 switch (event) {
390 case BUS_NOTIFY_ADD_DEVICE:
391 if (pdev->dev.of_node)
392 omap_device_build_from_dt(pdev);
393 break;
394
395 case BUS_NOTIFY_DEL_DEVICE: 391 case BUS_NOTIFY_DEL_DEVICE:
396 if (pdev->archdata.od) 392 if (pdev->archdata.od)
397 omap_device_delete(pdev->archdata.od); 393 omap_device_delete(pdev->archdata.od);
398 break; 394 break;
395 case BUS_NOTIFY_ADD_DEVICE:
396 if (pdev->dev.of_node)
397 omap_device_build_from_dt(pdev);
398 /* fall through */
399 default:
400 od = to_omap_device(pdev);
401 if (od)
402 od->_driver_status = event;
399 } 403 }
400 404
401 return NOTIFY_DONE; 405 return NOTIFY_DONE;