We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56088ba commit ad084f3Copy full SHA for ad084f3
arch/arm/mach-omap2/omap_hwmod.c
@@ -783,7 +783,9 @@ static int _init_interface_clks(struct omap_hwmod *oh)
783
if (IS_ERR(c)) {
784
pr_warning("omap_hwmod: %s: cannot clk_get interface_clk %s\n",
785
oh->name, os->clk);
786
- ret = -EINVAL;
+ if (ret == 0)
787
+ ret = -EINVAL;
788
+ continue;
789
}
790
os->_clk = c;
791
/*
@@ -819,7 +821,9 @@ static int _init_opt_clks(struct omap_hwmod *oh)
819
821
820
822
pr_warning("omap_hwmod: %s: cannot clk_get opt_clk %s\n",
823
oh->name, oc->clk);
824
825
826
827
828
oc->_clk = c;
829
0 commit comments