diff options
author | Sjoerd Simons <sjoerd@collabora.com> | 2023-07-27 04:03:29 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-07-28 10:10:29 -0400 |
commit | 5886c361e4cc508ac707d29b753d3183eeba6899 (patch) | |
tree | 4351acabdbde7daf3c094624f36dbcb8f80ebb97 | |
parent | 7c9267e5115f5cae729a27a0c8ecc35d6297f2b3 (diff) |
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 <sjoerd@collabora.com>
Reviewed-by: Roger Quadros <rogerq@kernel.org>
Reviewed-by: Tom Rini <trini@konsulko.com>
Tested-by: Maxime Ripard <mripard@kernel.org>
Tested-by: Ravi Gunasekaran <r-gunasekaran@ti.com>
Tested-by: Mattijs Korpershoek <mkorpershoek@baylibre.com>
Cc: Francesco Dolcini <francesco@dolcini.it>
Cc: Wadim Egorov <w.egorov@phytec.de>
Signed-off-by: Nishanth Menon <nm@ti.com>
-rw-r--r-- | drivers/timer/omap-timer.c | 1 |
1 files changed, 1 insertions, 0 deletions
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" }, {} }; |