Message ID | 1398170621-2685-1-git-send-email-linus.walleij@linaro.org |
---|---|
State | Accepted |
Commit | ccd9726e05f0b181016db1adcff633cf9baf5c4e |
Headers | show |
On Tue, Apr 22, 2014 at 9:43 PM, Linus Walleij <linus.walleij@linaro.org> wrote: > As demonstrated by commit > 390d82e312c56b75407a3606cbcde8c4bc7f10ae > "gpiolib: ACPI: remove gpio_to_desc() usage" > > gpio_to_desc() must die. Replace one of its usage by the > newly-introduced gpiochip_get_desc() function. Yay, let that thing die. Reviewed-by: Alexandre Courbot <acourbot@nvidia.com> -- To unsubscribe from this list: send the line "unsubscribe linux-gpio" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/drivers/gpio/gpiolib-of.c b/drivers/gpio/gpiolib-of.c index 2024d45e5503..db98d3a12f70 100644 --- a/drivers/gpio/gpiolib-of.c +++ b/drivers/gpio/gpiolib-of.c @@ -48,7 +48,7 @@ static int of_gpiochip_find_and_xlate(struct gpio_chip *gc, void *data) if (ret < 0) return false; - gg_data->out_gpio = gpio_to_desc(ret + gc->base); + gg_data->out_gpio = gpiochip_get_desc(gc, ret); return true; }
As demonstrated by commit 390d82e312c56b75407a3606cbcde8c4bc7f10ae "gpiolib: ACPI: remove gpio_to_desc() usage" gpio_to_desc() must die. Replace one of its usage by the newly-introduced gpiochip_get_desc() function. Cc: Alexandre Courbot <acourbot@nvidia.com> Signed-off-by: Linus Walleij <linus.walleij@linaro.org> --- drivers/gpio/gpiolib-of.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)