From 5886c361e4cc508ac707d29b753d3183eeba6899 Mon Sep 17 00:00:00 2001 From: Sjoerd Simons Date: Thu, 27 Jul 2023 04:03:29 -0500 Subject: [PATCH] omap: timer: add ti,am654-timer compatibility The TI AM654 timer is compatible with the omap-timer implementation, so add it to the compatible id list. Signed-off-by: Sjoerd Simons Reviewed-by: Roger Quadros Reviewed-by: Tom Rini Tested-by: Maxime Ripard Tested-by: Ravi Gunasekaran Tested-by: Mattijs Korpershoek Cc: Francesco Dolcini Cc: Wadim Egorov Signed-off-by: Nishanth Menon --- drivers/timer/omap-timer.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/timer/omap-timer.c b/drivers/timer/omap-timer.c index aa2e4360c1..9b6d97dae6 100644 --- a/drivers/timer/omap-timer.c +++ b/drivers/timer/omap-timer.c @@ -114,6 +114,7 @@ static const struct udevice_id omap_timer_ids[] = { { .compatible = "ti,am335x-timer" }, { .compatible = "ti,am4372-timer" }, { .compatible = "ti,omap5430-timer" }, + { .compatible = "ti,am654-timer" }, {} };