mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 06:31:49 +00:00
gpiolib: Warn on drivers still using static gpiobase allocation
In the preparation of getting completely rid of static gpiobase allocation in the future, emit a warning in drivers still doing so. Signed-off-by: Christophe Leroy <christophe.leroy@csgroup.eu> Reviewed-by: Andy Shevchenko <andy.shevchenko@gmail.com> Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
This commit is contained in:
parent
95e827a1b0
commit
502df79b86
@ -715,6 +715,9 @@ int gpiochip_add_data_with_key(struct gpio_chip *gc, void *data,
|
|||||||
* a poison instead.
|
* a poison instead.
|
||||||
*/
|
*/
|
||||||
gc->base = base;
|
gc->base = base;
|
||||||
|
} else {
|
||||||
|
dev_warn(&gdev->dev,
|
||||||
|
"Static allocation of GPIO base is deprecated, use dynamic allocation.\n");
|
||||||
}
|
}
|
||||||
gdev->base = base;
|
gdev->base = base;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user