Message ID | 20240618111824.15593-1-brgl@bgdev.pl |
---|---|
State | New |
Headers | show |
Series | [RFT] pinctrl: da9062: replace gpiochip_get_desc() with gpio_device_get_desc() | expand |
From: Bartosz Golaszewski <bartosz.golaszewski@linaro.org> On Tue, 18 Jun 2024 13:18:24 +0200, Bartosz Golaszewski wrote: > In order to finally confine the unsafe gpiochip_get_desc() to > drivers/gpio/, let's convert this driver to using the safer alternative > that takes the gpio_device as argument. > > Applied, thanks! [1/1] pinctrl: da9062: replace gpiochip_get_desc() with gpio_device_get_desc() commit: 8657af6c0a9afaa11947b7476119834898823b52 Best regards,
diff --git a/drivers/pinctrl/pinctrl-da9062.c b/drivers/pinctrl/pinctrl-da9062.c index 22e3cd2cc963..6f44a13b90ce 100644 --- a/drivers/pinctrl/pinctrl-da9062.c +++ b/drivers/pinctrl/pinctrl-da9062.c @@ -139,7 +139,7 @@ static int da9062_gpio_direction_input(struct gpio_chip *gc, { struct da9062_pctl *pctl = gpiochip_get_data(gc); struct regmap *regmap = pctl->da9062->regmap; - struct gpio_desc *desc = gpiochip_get_desc(gc, offset); + struct gpio_desc *desc = gpio_device_get_desc(gc->gpiodev, offset); unsigned int gpi_type; int ret;