Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 331296
b: refs/heads/master
c: 3bb05db
h: refs/heads/master
v: v3
  • Loading branch information
Paul Walmsley committed Sep 23, 2012
1 parent 7ec8ae9 commit 491660c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 2b026d137b13047d01d426a61e2d50b5dcb58fd0
refs/heads/master: 3bb05dbf69018177c06ee09011e2d8bd183dd2ba
6 changes: 4 additions & 2 deletions trunk/arch/arm/mach-omap2/omap_hwmod.c
Original file line number Diff line number Diff line change
Expand Up @@ -696,7 +696,7 @@ static int _init_main_clk(struct omap_hwmod *oh)
clk_prepare(oh->_clk);

if (!oh->_clk->clkdm)
pr_warning("omap_hwmod: %s: missing clockdomain for %s.\n",
pr_debug("omap_hwmod: %s: missing clockdomain for %s.\n",
oh->name, oh->main_clk);

return ret;
Expand Down Expand Up @@ -1454,8 +1454,10 @@ static struct omap_hwmod *_lookup(const char *name)
*/
static int _init_clkdm(struct omap_hwmod *oh)
{
if (!oh->clkdm_name)
if (!oh->clkdm_name) {
pr_debug("omap_hwmod: %s: missing clockdomain\n", oh->name);
return 0;
}

oh->clkdm = clkdm_lookup(oh->clkdm_name);
if (!oh->clkdm) {
Expand Down

0 comments on commit 491660c

Please sign in to comment.