]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
watchdog: loongson1: Drop CONFIG_OF
authorBinbin Zhou <zhoubinbin@loongson.cn>
Fri, 7 Nov 2025 06:01:29 +0000 (14:01 +0800)
committerWim Van Sebroeck <wim@linux-watchdog.org>
Sat, 15 Nov 2025 14:28:09 +0000 (15:28 +0100)
The general recommendation is to not use of_match_ptr() or CONFIG_OF
ifdef.

Drop them.

Signed-off-by: Binbin Zhou <zhoubinbin@loongson.cn>
Reviewed-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Wim Van Sebroeck <wim@linux-watchdog.org>
drivers/watchdog/loongson1_wdt.c

index 781f01f1f88850e3a203e1de505eff3b2dbe75a8..255198cbf5bf70c90fe76198f54c988de706e26c 100644 (file)
@@ -142,20 +142,18 @@ static int ls1x_wdt_probe(struct platform_device *pdev)
        return devm_watchdog_register_device(dev, &drvdata->wdt);
 }
 
-#ifdef CONFIG_OF
 static const struct of_device_id ls1x_wdt_dt_ids[] = {
        { .compatible = "loongson,ls1b-wdt", },
        { .compatible = "loongson,ls1c-wdt", },
        { /* sentinel */ }
 };
 MODULE_DEVICE_TABLE(of, ls1x_wdt_dt_ids);
-#endif
 
 static struct platform_driver ls1x_wdt_driver = {
        .probe = ls1x_wdt_probe,
        .driver = {
                .name = "ls1x-wdt",
-               .of_match_table = of_match_ptr(ls1x_wdt_dt_ids),
+               .of_match_table = ls1x_wdt_dt_ids,
        },
 };