summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJanne Grunau <[email protected]>2026-04-30 23:34:43 +0200
committerTom Rini <[email protected]>2026-05-12 12:08:05 -0600
commit74471e0e181b3d240a41204e01591a29815d69cf (patch)
tree9f05da754aa42ec0dc1b0f15f6474cd4f70efc66
parent6df6f974312f0d92394d2e6465705ccc4e0576da (diff)
watchdog: apple: Add "apple,t8103-wdt" compatible
After discussion with the devicetree maintainers we agreed to not extend lists with the generic compatible "apple,wdt" anymore [1]. Use "apple,t8103-wdt" as base compatible as it is the SoC driver and bindings were originally written for. The t602x (M2 Pro/Max/Ultra) devicetrees submitted in [2] use this compatible as fallback instead of "apple,wdt". Link: https://lore.kernel.org/asahi/[email protected]/ [1] Link: https://lore.kernel.org/asahi/[email protected]/ [2] Signed-off-by: Janne Grunau <[email protected]> Reviewed-by: Stefan Roese <[email protected]> Acked-by: Mark Kettenis <[email protected]>
-rw-r--r--drivers/watchdog/apple_wdt.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/watchdog/apple_wdt.c b/drivers/watchdog/apple_wdt.c
index c7307f41cb7..9e998994216 100644
--- a/drivers/watchdog/apple_wdt.c
+++ b/drivers/watchdog/apple_wdt.c
@@ -78,6 +78,7 @@ static const struct wdt_ops apple_wdt_ops = {
};
static const struct udevice_id apple_wdt_ids[] = {
+ { .compatible = "apple,t8103-wdt" },
{ .compatible = "apple,wdt" },
{ /* sentinel */ }
};