Message ID | 20231017120431.68847-54-brgl@bgdev.pl |
---|---|
State | New |
Headers | show |
Series | pinctrl: don't use GPIOLIB global numberspace in helpers | expand |
On Tue, Oct 17, 2023 at 02:04:11PM +0200, Bartosz Golaszewski wrote: > From: Bartosz Golaszewski <bartosz.golaszewski@linaro.org> > > pinctrl_gpio_direction_input() now has the same signature as the > wrappers around it so we can drop them. W/o "intel:" part in the Subj Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
On Tue, Oct 17, 2023 at 2:28 PM Andy Shevchenko <andriy.shevchenko@linux.intel.com> wrote: > > On Tue, Oct 17, 2023 at 02:04:11PM +0200, Bartosz Golaszewski wrote: > > From: Bartosz Golaszewski <bartosz.golaszewski@linaro.org> > > > > pinctrl_gpio_direction_input() now has the same signature as the > > wrappers around it so we can drop them. > > W/o "intel:" part in the Subj > Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Unless something new comes up, I'll fix this in tree in order to not spam the list anymore with these patch bombs. Bart > > -- > With Best Regards, > Andy Shevchenko > >
diff --git a/drivers/pinctrl/intel/pinctrl-lynxpoint.c b/drivers/pinctrl/intel/pinctrl-lynxpoint.c index e6878e4cf20c..303aaca341ea 100644 --- a/drivers/pinctrl/intel/pinctrl-lynxpoint.c +++ b/drivers/pinctrl/intel/pinctrl-lynxpoint.c @@ -539,11 +539,6 @@ static void lp_gpio_set(struct gpio_chip *chip, unsigned int offset, int value) raw_spin_unlock_irqrestore(&lg->lock, flags); } -static int lp_gpio_direction_input(struct gpio_chip *chip, unsigned int offset) -{ - return pinctrl_gpio_direction_input(chip, offset); -} - static int lp_gpio_direction_output(struct gpio_chip *chip, unsigned int offset, int value) { @@ -799,7 +794,7 @@ static int lp_gpio_probe(struct platform_device *pdev) gc->owner = THIS_MODULE; gc->request = gpiochip_generic_request; gc->free = gpiochip_generic_free; - gc->direction_input = lp_gpio_direction_input; + gc->direction_input = pinctrl_gpio_direction_input; gc->direction_output = lp_gpio_direction_output; gc->get = lp_gpio_get; gc->set = lp_gpio_set;