mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-16 04:13:31 +00:00
19 lines
710 B
Diff
19 lines
710 B
Diff
Allwinner ARMv5 F1C100s has similar watchdog timer to sun6i A31.
|
|
Add compatible string for it.
|
|
|
|
Signed-off-by: Mesih Kilinc <mesihkilinc@gmail.com>
|
|
---
|
|
drivers/watchdog/sunxi_wdt.c | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
--- a/drivers/watchdog/sunxi_wdt.c
|
|
+++ b/drivers/watchdog/sunxi_wdt.c
|
|
@@ -241,6 +241,7 @@ static const struct of_device_id sunxi_w
|
|
{ .compatible = "allwinner,sun4i-a10-wdt", .data = &sun4i_wdt_reg },
|
|
{ .compatible = "allwinner,sun6i-a31-wdt", .data = &sun6i_wdt_reg },
|
|
{ .compatible = "allwinner,sun20i-d1-wdt", .data = &sun20i_wdt_reg },
|
|
+ { .compatible = "allwinner,suniv-f1c100s-wdt", .data = &sun6i_wdt_reg },
|
|
{ /* sentinel */ }
|
|
};
|
|
MODULE_DEVICE_TABLE(of, sunxi_wdt_dt_ids);
|