aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/clocksource
diff options
context:
space:
mode:
authorRafael J. Wysocki <rjw@sisk.pl>2012-03-13 17:40:14 -0400
committerRafael J. Wysocki <rjw@sisk.pl>2012-03-16 16:45:26 -0400
commit57d13370cfaf6017c68981e66ff5b3bf20a2705c (patch)
tree711ab528fbe521c77fb3c0128d69cf3471a35b11 /drivers/clocksource
parent615a445f7f8a077c145e737864ae59a4d8717882 (diff)
PM / shmobile: Make MTU2 driver use pm_genpd_dev_always_on()
Make the MTU2 clocksource driver mark its device as "always on" using pm_genpd_dev_always_on() to protect it from surprise power removals. Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl> Tested-by: Simon Horman <horms@verge.net.au> Acked-by: Paul Mundt <lethal@linux-sh.org> Cc: stable@vger.kernel.org
Diffstat (limited to 'drivers/clocksource')
-rw-r--r--drivers/clocksource/sh_mtu2.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/clocksource/sh_mtu2.c b/drivers/clocksource/sh_mtu2.c
index db8d5955bad4..a2172f690418 100644
--- a/drivers/clocksource/sh_mtu2.c
+++ b/drivers/clocksource/sh_mtu2.c
@@ -31,6 +31,7 @@
31#include <linux/sh_timer.h> 31#include <linux/sh_timer.h>
32#include <linux/slab.h> 32#include <linux/slab.h>
33#include <linux/module.h> 33#include <linux/module.h>
34#include <linux/pm_domain.h>
34 35
35struct sh_mtu2_priv { 36struct sh_mtu2_priv {
36 void __iomem *mapbase; 37 void __iomem *mapbase;
@@ -306,6 +307,9 @@ static int __devinit sh_mtu2_probe(struct platform_device *pdev)
306 struct sh_mtu2_priv *p = platform_get_drvdata(pdev); 307 struct sh_mtu2_priv *p = platform_get_drvdata(pdev);
307 int ret; 308 int ret;
308 309
310 if (!is_early_platform_device(pdev))
311 pm_genpd_dev_always_on(&pdev->dev, true);
312
309 if (p) { 313 if (p) {
310 dev_info(&pdev->dev, "kept as earlytimer\n"); 314 dev_info(&pdev->dev, "kept as earlytimer\n");
311 return 0; 315 return 0;