On Mon, Aug 07, 2023 at 02:30:21PM -0700, Florian Fainelli wrote:
> We can have gpiochip_add_data() return -EPROBE_DEFER which will make us
> produce the "unable to add GPIO chip" message which is confusing. Use
> dev_err_probe() to silence probe deferral messages.
...
> ret = gpiochip_add_data(gc, chip);
> if (ret < 0) {
> - dev_err(dev, "unable to add GPIO chip\n");
> + dev_err_probe(dev, ret, "unable to add GPIO chip\n");
> return ret;
return dev_err_probe(...);
> }
--
With Best Regards,
Andy Shevchenko