Hi, Am Mittwoch, 15. Februar 2023, 09:29:36 CET schrieb Bartosz Golaszewski: > On Tue, Feb 14, 2023 at 11:47 PM Shenwei Wang <shenwei.wang@xxxxxxx> wrote: > > The latest gpio driver framework will give the following warning > > when it detects the static allocation of the GPIO bases. > > > > "[ 1.329312] gpio gpiochip0: Static allocation of GPIO base is > > deprecated, use dynamic allocation." > > > > This patch removes the static allocation of GPIO base to get rid > > of the warning message. > > > > Signed-off-by: Shenwei Wang <shenwei.wang@xxxxxxx> > > --- > > > > drivers/gpio/gpio-mxc.c | 2 -- > > 1 file changed, 2 deletions(-) > > > > diff --git a/drivers/gpio/gpio-mxc.c b/drivers/gpio/gpio-mxc.c > > index d5626c572d24..07948175441c 100644 > > --- a/drivers/gpio/gpio-mxc.c > > +++ b/drivers/gpio/gpio-mxc.c > > @@ -450,8 +450,6 @@ static int mxc_gpio_probe(struct platform_device > > *pdev) > > > > port->gc.request = gpiochip_generic_request; > > port->gc.free = gpiochip_generic_free; > > port->gc.to_irq = mxc_gpio_to_irq; > > > > - port->gc.base = (pdev->id < 0) ? of_alias_get_id(np, "gpio") * 32 > > : > > - pdev->id * 32; > > > > err = devm_gpiochip_add_data(&pdev->dev, &port->gc, port); > > if (err) > > > > -- > > 2.34.1 > > This is one of the drivers for which we can't do it yet: > https://lore.kernel.org/linux-gpio/20230120104647.nwki4silrtd7bt3w@pengutron > ix.de/ I just send a patch for adding generic GPIO alias support at [1]. Having that support added this patch should apply without adding a regression. Best regards, Alexander [1] https://lore.kernel.org/linux-gpio/20230215092421.143199-1-alexander.stein@xxxxxxxxxxxxxxx/T/#u -- TQ-Systems GmbH | Mühlstraße 2, Gut Delling | 82229 Seefeld, Germany Amtsgericht München, HRB 105018 Geschäftsführer: Detlef Schneider, Rüdiger Stahl, Stefan Schneider http://www.tq-group.com/