Message ID | 1474368846-15916-1-git-send-email-arvind.yadav.cs@gmail.com (mailing list archive) |
---|---|
State | Accepted, archived |
Delegated to: | Stephen Boyd |
Headers | show |
On 20.09.2016 13:54, Arvind Yadav wrote: > From: Arvind Yadav <arvind.yadav.cs@gmail.com> > > Free memory mapping, if lpc32xx_clk_init is not successful. > > Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com> > --- > drivers/clk/nxp/clk-lpc32xx.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/drivers/clk/nxp/clk-lpc32xx.c b/drivers/clk/nxp/clk-lpc32xx.c > index 90d740a..34c9735 100644 > --- a/drivers/clk/nxp/clk-lpc32xx.c > +++ b/drivers/clk/nxp/clk-lpc32xx.c > @@ -1513,6 +1513,7 @@ static void __init lpc32xx_clk_init(struct device_node *np) > if (IS_ERR(clk_regmap)) { > pr_err("failed to regmap system control block: %ld\n", > PTR_ERR(clk_regmap)); > + iounmap(base); > return; > } > > Acked-by: Vladimir Zapolskiy <vz@mleia.com> Thank you for the patch. -- With best wishes, Vladimir -- To unsubscribe from this list: send the line "unsubscribe linux-clk" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
On Wed, 2016-09-21 at 13:17 +0300, Vladimir Zapolskiy wrote: > On 20.09.2016 13:54, Arvind Yadav wrote: > > From: Arvind Yadav <arvind.yadav.cs@gmail.com> > > > > Free memory mapping, if lpc32xx_clk_init is not successful. > > > > Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com> > > --- > > drivers/clk/nxp/clk-lpc32xx.c | 1 + > > 1 file changed, 1 insertion(+) > > > > diff --git a/drivers/clk/nxp/clk-lpc32xx.c b/drivers/clk/nxp/clk-lpc32xx.c > > index 90d740a..34c9735 100644 > > --- a/drivers/clk/nxp/clk-lpc32xx.c > > +++ b/drivers/clk/nxp/clk-lpc32xx.c > > @@ -1513,6 +1513,7 @@ static void __init lpc32xx_clk_init(struct device_node *np) > > if (IS_ERR(clk_regmap)) { > > pr_err("failed to regmap system control block: %ld\n", > > PTR_ERR(clk_regmap)); > > + iounmap(base); > > return; > > } > > > > > > Acked-by: Vladimir Zapolskiy <vz@mleia.com> > > Thank you for the patch. > Acked-by: Sylvain Lemieux <slemieux.tyco@gmail.com> > -- > With best wishes, > Vladimir > > -- To unsubscribe from this list: send the line "unsubscribe linux-clk" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
On 09/20, Arvind Yadav wrote: > From: Arvind Yadav <arvind.yadav.cs@gmail.com> > > Free memory mapping, if lpc32xx_clk_init is not successful. > > Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com> > --- Applied to clk-next
diff --git a/drivers/clk/nxp/clk-lpc32xx.c b/drivers/clk/nxp/clk-lpc32xx.c index 90d740a..34c9735 100644 --- a/drivers/clk/nxp/clk-lpc32xx.c +++ b/drivers/clk/nxp/clk-lpc32xx.c @@ -1513,6 +1513,7 @@ static void __init lpc32xx_clk_init(struct device_node *np) if (IS_ERR(clk_regmap)) { pr_err("failed to regmap system control block: %ld\n", PTR_ERR(clk_regmap)); + iounmap(base); return; }