Re: [PATCH v1 38/43] pata: cirrus: drop legacy pinctrl

From: andy . shevchenko
Date: Thu Jun 01 2023 - 21:52:53 EST


Thu, Jun 01, 2023 at 08:45:43AM +0300, Nikita Shubin kirjoitti:
> Drop legacy acquire/release since we are using
> pinctrl for this now.

...

> drv_data = devm_kzalloc(&pdev->dev, sizeof(*drv_data), GFP_KERNEL);
> - if (!drv_data) {
> - err = -ENXIO;

Wondering why it's not ENOMEM even in the original code?

> - goto err_rel_gpio;
> - }
> + if (!drv_data)
> + return -ENXIO;

--
With Best Regards,
Andy Shevchenko