mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-12 13:55:25 -04:00
gpio: constify of_phandle_args in of_find_gpio_device_by_xlate()
Pointer to the struct of_phandle_args can be made const after
gpio_device_find() arguments got constified. This should be part of
commit 4a92857d6e ("gpio: constify opaque pointer "data" in
gpio_device_find()").
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
This commit is contained in:
committed by
Bartosz Golaszewski
parent
24ba441d2b
commit
ee9d589567
@@ -129,7 +129,7 @@ static int of_gpiochip_match_node_and_xlate(struct gpio_chip *chip,
|
||||
}
|
||||
|
||||
static struct gpio_device *
|
||||
of_find_gpio_device_by_xlate(struct of_phandle_args *gpiospec)
|
||||
of_find_gpio_device_by_xlate(const struct of_phandle_args *gpiospec)
|
||||
{
|
||||
return gpio_device_find(gpiospec, of_gpiochip_match_node_and_xlate);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user