From: Lokesh Vutla Date: Fri, 19 Dec 2014 12:34:50 +0000 (+0530) Subject: ARM: OMAP2+: hwmod: print error if wait_target_ready() failed X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=812ce9d2825d6a897458615b48f87ea5ba47e6a9;p=linux-beck.git ARM: OMAP2+: hwmod: print error if wait_target_ready() failed Fixed pr_debug to pr_err when hwmod returns an error when enabling a module. Signed-off-by: Lokesh Vutla Acked-by: Roger Quadros Signed-off-by: Paul Walmsley --- diff --git a/arch/arm/mach-omap2/omap_hwmod.c b/arch/arm/mach-omap2/omap_hwmod.c index cbb908dc5cf0..06157af892ce 100644 --- a/arch/arm/mach-omap2/omap_hwmod.c +++ b/arch/arm/mach-omap2/omap_hwmod.c @@ -2155,8 +2155,8 @@ static int _enable(struct omap_hwmod *oh) if (soc_ops.disable_module) soc_ops.disable_module(oh); _disable_clocks(oh); - pr_debug("omap_hwmod: %s: _wait_target_ready: %d\n", - oh->name, r); + pr_err("omap_hwmod: %s: _wait_target_ready failed: %d\n", + oh->name, r); if (oh->clkdm) clkdm_hwmod_disable(oh->clkdm, oh);