diff options
Diffstat (limited to 'arch/arm/mach-omap2/prcm.c')
| -rw-r--r-- | arch/arm/mach-omap2/prcm.c | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/arm/mach-omap2/prcm.c b/arch/arm/mach-omap2/prcm.c index 9c9d23c1020..0f51e034e0a 100644 --- a/arch/arm/mach-omap2/prcm.c +++ b/arch/arm/mach-omap2/prcm.c @@ -139,11 +139,11 @@ int omap2_cm_wait_idlest(void __iomem *reg, u32 mask, u8 idlest,  			  MAX_MODULE_ENABLE_WAIT, i);  	if (i < MAX_MODULE_ENABLE_WAIT) -		pr_debug("cm: Module associated with clock %s ready after %d " -			 "loops\n", name, i); +		pr_debug("cm: Module associated with clock %s ready after %d loops\n", +			 name, i);  	else -		pr_err("cm: Module associated with clock %s didn't enable in " -		       "%d tries\n", name, MAX_MODULE_ENABLE_WAIT); +		pr_err("cm: Module associated with clock %s didn't enable in %d tries\n", +		       name, MAX_MODULE_ENABLE_WAIT);  	return (i < MAX_MODULE_ENABLE_WAIT) ? 1 : 0;  };  |