On Sun, Sep 24, 2023 at 06:42:57PM +0200, Duje Mihanović wrote: > The PXA reset driver still uses the legacy GPIO interface for > configuring and asserting the reset pin. > > Convert it to use the GPIO descriptor interface. ... > + reset_gpio = gpiod_get(NULL, "reset generator", GPIOD_ASIS); > + if (IS_ERR(reset_gpio)) { > + printk(KERN_ERR "Can't request reset_gpio: %ld\n", > + PTR_ERR(reset_gpio)); pr_err() > + return PTR_ERR(reset_gpio); > } -- With Best Regards, Andy Shevchenko