diff options
author | Santosh Shilimkar <santosh.shilimkar@ti.com> | 2010-09-15 01:04:00 +0530 |
---|---|---|
committer | Kevin Hilman <khilman@deeprootsystems.com> | 2010-09-23 17:14:10 -0700 |
commit | 315e2556f62adb51c40d5422f4134bd3630d8157 (patch) | |
tree | 0897895d50c45e03d2c1904af1e2b41d62ef77f5 /arch/arm/mach-omap2/pm-debug.c | |
parent | 86b0c1e3c07f7fc3a8197a934d9a04476061bed9 (diff) | |
download | op-kernel-dev-315e2556f62adb51c40d5422f4134bd3630d8157.zip op-kernel-dev-315e2556f62adb51c40d5422f4134bd3630d8157.tar.gz |
omap: pm-debug: Enable wakeup_timer_milliseconds debugfs entry
Commit 8e2efde9 added milliseconds suspend wakeup time support but
same interface is not exported through debugfs
This patch enables the debugfs hook for wakeup_timer_milliseconds
Signed-off-by: Santosh Shilimkar <santosh.shilimkar@ti.com>
Signed-off-by: Kevin Hilman <khilman@deeprootsystems.com>
Diffstat (limited to 'arch/arm/mach-omap2/pm-debug.c')
-rw-r--r-- | arch/arm/mach-omap2/pm-debug.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/arm/mach-omap2/pm-debug.c b/arch/arm/mach-omap2/pm-debug.c index 655f9df..af00c17 100644 --- a/arch/arm/mach-omap2/pm-debug.c +++ b/arch/arm/mach-omap2/pm-debug.c @@ -638,6 +638,9 @@ static int __init pm_dbg_init(void) &sleep_while_idle, &pm_dbg_option_fops); (void) debugfs_create_file("wakeup_timer_seconds", S_IRUGO | S_IWUGO, d, &wakeup_timer_seconds, &pm_dbg_option_fops); + (void) debugfs_create_file("wakeup_timer_milliseconds", + S_IRUGO | S_IWUGO, d, &wakeup_timer_milliseconds, + &pm_dbg_option_fops); pm_dbg_init_done = 1; return 0; |