From mboxrd@z Thu Jan 1 00:00:00 1970 From: Tony Lindgren Subject: Re: [patch] pinctrl: single: Fix a couple error codes Date: Wed, 16 Nov 2016 06:49:02 -0800 Message-ID: <20161116144901.GO4082@atomide.com> References: <20161116114151.GA31224@mwanda> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Content-Disposition: inline In-Reply-To: <20161116114151.GA31224@mwanda> Sender: kernel-janitors-owner@vger.kernel.org To: Dan Carpenter Cc: Haojian Zhuang , Linus Walleij , linux-omap@vger.kernel.org, linux-gpio@vger.kernel.org, kernel-janitors@vger.kernel.org List-Id: linux-gpio@vger.kernel.org * Dan Carpenter [161116 03:43]: > We should return -ENOMEM instead of success if pcs_add_function() fails. Looks good to me thanks: Acked-by: Tony Lindgren > Signed-off-by: Dan Carpenter > > diff --git a/drivers/pinctrl/pinctrl-single.c b/drivers/pinctrl/pinctrl-single.c > index 2b196e5..a5a0392 100644 > --- a/drivers/pinctrl/pinctrl-single.c > +++ b/drivers/pinctrl/pinctrl-single.c > @@ -1181,8 +1181,10 @@ static int pcs_parse_one_pinctrl_entry(struct pcs_device *pcs, > > pgnames[0] = np->name; > function = pcs_add_function(pcs, np, np->name, vals, found, pgnames, 1); > - if (!function) > + if (!function) { > + res = -ENOMEM; > goto free_pins; > + } > > res = pcs_add_pingroup(pcs, np, np->name, pins, found); > if (res < 0) > @@ -1313,8 +1315,10 @@ static int pcs_parse_bits_in_pinctrl_entry(struct pcs_device *pcs, > > pgnames[0] = np->name; > function = pcs_add_function(pcs, np, np->name, vals, found, pgnames, 1); > - if (!function) > + if (!function) { > + res = -ENOMEM; > goto free_pins; > + } > > res = pcs_add_pingroup(pcs, np, np->name, pins, found); > if (res < 0)