All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ARM: OMAP2+: hwmod: print error if wait_target_ready() failed
@ 2014-12-19 12:34 ` Lokesh Vutla
  0 siblings, 0 replies; 6+ messages in thread
From: Lokesh Vutla @ 2014-12-19 12:34 UTC (permalink / raw)
  To: paul, tony
  Cc: linux-omap, t-kristo, rogerq, nsekhar, lokeshvutla,
	linux-arm-kernel

Fixed pr_debug to pr_err when hwmod returns an error when enabling
a module.

Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com>
---
 arch/arm/mach-omap2/omap_hwmod.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/arm/mach-omap2/omap_hwmod.c b/arch/arm/mach-omap2/omap_hwmod.c
index cbb908d..06157af 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);
-- 
1.9.1


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCH] ARM: OMAP2+: hwmod: print error if wait_target_ready() failed
@ 2014-12-19 12:34 ` Lokesh Vutla
  0 siblings, 0 replies; 6+ messages in thread
From: Lokesh Vutla @ 2014-12-19 12:34 UTC (permalink / raw)
  To: linux-arm-kernel

Fixed pr_debug to pr_err when hwmod returns an error when enabling
a module.

Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com>
---
 arch/arm/mach-omap2/omap_hwmod.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/arm/mach-omap2/omap_hwmod.c b/arch/arm/mach-omap2/omap_hwmod.c
index cbb908d..06157af 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);
-- 
1.9.1

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH] ARM: OMAP2+: hwmod: print error if wait_target_ready() failed
  2014-12-19 12:34 ` Lokesh Vutla
@ 2014-12-29  9:38   ` Roger Quadros
  -1 siblings, 0 replies; 6+ messages in thread
From: Roger Quadros @ 2014-12-29  9:38 UTC (permalink / raw)
  To: Lokesh Vutla, paul, tony; +Cc: linux-omap, t-kristo, nsekhar, linux-arm-kernel

On 19/12/14 14:34, Lokesh Vutla wrote:
> Fixed pr_debug to pr_err when hwmod returns an error when enabling
> a module.
> 
> Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com>

Acked-by: Roger Quadros <rogerq@ti.com>

cheers,
-roger


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [PATCH] ARM: OMAP2+: hwmod: print error if wait_target_ready() failed
@ 2014-12-29  9:38   ` Roger Quadros
  0 siblings, 0 replies; 6+ messages in thread
From: Roger Quadros @ 2014-12-29  9:38 UTC (permalink / raw)
  To: linux-arm-kernel

On 19/12/14 14:34, Lokesh Vutla wrote:
> Fixed pr_debug to pr_err when hwmod returns an error when enabling
> a module.
> 
> Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com>

Acked-by: Roger Quadros <rogerq@ti.com>

cheers,
-roger

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] ARM: OMAP2+: hwmod: print error if wait_target_ready() failed
  2014-12-19 12:34 ` Lokesh Vutla
@ 2015-01-20  6:11   ` Paul Walmsley
  -1 siblings, 0 replies; 6+ messages in thread
From: Paul Walmsley @ 2015-01-20  6:11 UTC (permalink / raw)
  To: Lokesh Vutla
  Cc: tony, linux-omap, t-kristo, rogerq, nsekhar, linux-arm-kernel

On Fri, 19 Dec 2014, Lokesh Vutla wrote:

> Fixed pr_debug to pr_err when hwmod returns an error when enabling
> a module.
> 
> Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com>

Thanks, queued for v3.20 with Roger's ack.


- Paul

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [PATCH] ARM: OMAP2+: hwmod: print error if wait_target_ready() failed
@ 2015-01-20  6:11   ` Paul Walmsley
  0 siblings, 0 replies; 6+ messages in thread
From: Paul Walmsley @ 2015-01-20  6:11 UTC (permalink / raw)
  To: linux-arm-kernel

On Fri, 19 Dec 2014, Lokesh Vutla wrote:

> Fixed pr_debug to pr_err when hwmod returns an error when enabling
> a module.
> 
> Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com>

Thanks, queued for v3.20 with Roger's ack.


- Paul

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2015-01-20  6:11 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-12-19 12:34 [PATCH] ARM: OMAP2+: hwmod: print error if wait_target_ready() failed Lokesh Vutla
2014-12-19 12:34 ` Lokesh Vutla
2014-12-29  9:38 ` Roger Quadros
2014-12-29  9:38   ` Roger Quadros
2015-01-20  6:11 ` Paul Walmsley
2015-01-20  6:11   ` Paul Walmsley

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.