|
@@ -696,7 +696,7 @@ static int _init_main_clk(struct omap_hwmod *oh)
|
|
clk_prepare(oh->_clk);
|
|
clk_prepare(oh->_clk);
|
|
|
|
|
|
if (!oh->_clk->clkdm)
|
|
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);
|
|
oh->name, oh->main_clk);
|
|
|
|
|
|
return ret;
|
|
return ret;
|
|
@@ -1454,8 +1454,10 @@ static struct omap_hwmod *_lookup(const char *name)
|
|
*/
|
|
*/
|
|
static int _init_clkdm(struct omap_hwmod *oh)
|
|
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;
|
|
return 0;
|
|
|
|
+ }
|
|
|
|
|
|
oh->clkdm = clkdm_lookup(oh->clkdm_name);
|
|
oh->clkdm = clkdm_lookup(oh->clkdm_name);
|
|
if (!oh->clkdm) {
|
|
if (!oh->clkdm) {
|