gpio: aggregator: Remove CONFIG_OF and of_match_ptr() protections
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Thu, 15 Jun 2023 13:20:19 +0000 (16:20 +0300)
committerBartosz Golaszewski <bartosz.golaszewski@linaro.org>
Fri, 16 Jun 2023 09:01:57 +0000 (11:01 +0200)
They stop the driver being used with ACPI PRP0001 and are something
I want to avoid being cut and paste into new drivers. Also include
mod_devicetable.h as we struct of_device_id is defined in there.

Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
Reviewed-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Tested-by: Alexander Stein <alexander.stein@ew.tq-group.com>
Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
drivers/gpio/gpio-aggregator.c

index 20a686f12df7f9857e31871f15db90c2bf9a7ce4..1aa7455672d355afb8df1789ef826f0dfc6624cf 100644 (file)
@@ -12,6 +12,7 @@
 #include <linux/ctype.h>
 #include <linux/idr.h>
 #include <linux/kernel.h>
+#include <linux/mod_devicetable.h>
 #include <linux/module.h>
 #include <linux/mutex.h>
 #include <linux/overflow.h>
@@ -500,23 +501,21 @@ static int gpio_aggregator_probe(struct platform_device *pdev)
        return 0;
 }
 
-#ifdef CONFIG_OF
 static const struct of_device_id gpio_aggregator_dt_ids[] = {
        /*
         * Add GPIO-operated devices controlled from userspace below,
-        * or use "driver_override" in sysfs
+        * or use "driver_override" in sysfs.
         */
        {}
 };
 MODULE_DEVICE_TABLE(of, gpio_aggregator_dt_ids);
-#endif
 
 static struct platform_driver gpio_aggregator_driver = {
        .probe = gpio_aggregator_probe,
        .driver = {
                .name = DRV_NAME,
                .groups = gpio_aggregator_groups,
-               .of_match_table = of_match_ptr(gpio_aggregator_dt_ids),
+               .of_match_table = gpio_aggregator_dt_ids,
        },
 };