]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
gpio: vf610: use generic device_get_match_data()
authorBartosz Golaszewski <bartosz.golaszewski@linaro.org>
Mon, 7 Oct 2024 10:25:49 +0000 (12:25 +0200)
committerBartosz Golaszewski <bartosz.golaszewski@linaro.org>
Mon, 14 Oct 2024 08:29:11 +0000 (10:29 +0200)
There's no need to use the OF-specific variant to get the match data.
Switch to using device_get_match_data() and with that remove the of.h
include. Also remove of_irq.h as none of its interfaces is used here and
order the includes in alphabetical order.

Reviewed-by: Linus Walleij <linus.walleij@linaro.org>
Link: https://lore.kernel.org/r/20241007102549.34926-1-brgl@bgdev.pl
Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
drivers/gpio/gpio-vf610.c

index 27eff741fe9a2af62539f7101b8fd839934a7557..c4f34a347cb6eaa171904eb38ff04767fd6619f0 100644 (file)
 #include <linux/io.h>
 #include <linux/ioport.h>
 #include <linux/irq.h>
-#include <linux/platform_device.h>
-#include <linux/of.h>
-#include <linux/of_irq.h>
 #include <linux/pinctrl/consumer.h>
+#include <linux/platform_device.h>
+#include <linux/property.h>
 
 #define VF610_GPIO_PER_PORT            32
 
@@ -297,7 +296,7 @@ static int vf610_gpio_probe(struct platform_device *pdev)
        if (!port)
                return -ENOMEM;
 
-       port->sdata = of_device_get_match_data(dev);
+       port->sdata = device_get_match_data(dev);
 
        dual_base = port->sdata->have_dual_base;