diff options
author | Tony Lindgren <tony@atomide.com> | 2013-01-30 14:03:05 -0800 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2013-01-30 14:03:05 -0800 |
commit | 0e084c9c843320995b0e219f02880f910d439b37 (patch) | |
tree | fe541c1d636f9666104f7753d0435c4681685ef9 /arch/arm/mach-omap2/pm-debug.c | |
parent | 7b4bc07991564dfcdfd9e6e7cbebc9bf337111eb (diff) | |
parent | 562e54d13b6e0b17f72c9e629e1fd0b71e2a8a36 (diff) |
Merge tag 'omap-cleanup-b-for-3.9' of git://git.kernel.org/pub/scm/linux/kernel/git/pjw/omap-pending into omap-for-v3.9/pm
Several OMAP2+ power management fixes, optimizations, and cleanup.
This series is a prerequisite for the functional powerdomain
conversion series.
Basic test logs for this branch are here:
http://www.pwsan.com/omap/testlogs/pm_cleanup_fixes_3.9/20130129150017/
Diffstat (limited to 'arch/arm/mach-omap2/pm-debug.c')
-rw-r--r-- | arch/arm/mach-omap2/pm-debug.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/arch/arm/mach-omap2/pm-debug.c b/arch/arm/mach-omap2/pm-debug.c index e2c291f52f9..6db89ae9238 100644 --- a/arch/arm/mach-omap2/pm-debug.c +++ b/arch/arm/mach-omap2/pm-debug.c @@ -83,10 +83,8 @@ static int clkdm_dbg_show_counter(struct clockdomain *clkdm, void *user) strncmp(clkdm->name, "dpll", 4) == 0) return 0; - seq_printf(s, "%s->%s (%d)", clkdm->name, - clkdm->pwrdm.ptr->name, - atomic_read(&clkdm->usecount)); - seq_printf(s, "\n"); + seq_printf(s, "%s->%s (%d)\n", clkdm->name, clkdm->pwrdm.ptr->name, + clkdm->usecount); return 0; } |