On Thu, Jun 15, 2023 at 01:53:32PM +0300, Claudiu Beznea wrote: > devm_kasprintf() returns a pointer to dynamically allocated memory. > Pointer could be NULL in case allocation fails. Check pointer validity. > Identified with coccinelle (kmerr.cocci script). Reviewed-by: Andy Shevchenko <andriy.shevchenko@xxxxxxxxxxxxxxx> > Fixes: 7e5ea974e61c ("pinctrl: pinctrl-microchip-sgpio: Add pinctrl driver for Microsemi Serial GPIO") > Signed-off-by: Claudiu Beznea <claudiu.beznea@xxxxxxxxxxxxx> > --- > drivers/pinctrl/pinctrl-microchip-sgpio.c | 3 +++ > 1 file changed, 3 insertions(+) > > diff --git a/drivers/pinctrl/pinctrl-microchip-sgpio.c b/drivers/pinctrl/pinctrl-microchip-sgpio.c > index 4794602316e7..666d8b7cdbad 100644 > --- a/drivers/pinctrl/pinctrl-microchip-sgpio.c > +++ b/drivers/pinctrl/pinctrl-microchip-sgpio.c > @@ -818,6 +818,9 @@ static int microchip_sgpio_register_bank(struct device *dev, > pctl_desc->name = devm_kasprintf(dev, GFP_KERNEL, "%s-%sput", > dev_name(dev), > bank->is_input ? "in" : "out"); > + if (!pctl_desc->name) > + return -ENOMEM; > + > pctl_desc->pctlops = &sgpio_pctl_ops; > pctl_desc->pmxops = &sgpio_pmx_ops; > pctl_desc->confops = &sgpio_confops; > -- > 2.34.1 > -- With Best Regards, Andy Shevchenko