The upstream devicetree uses omap2-timer and omap4-timer for ti,sysc. Add these compatibles in the u-boot driver.
Signed-off-by: Markus Schneider-Pargmann (TI) <[email protected]> --- drivers/bus/ti-sysc.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/bus/ti-sysc.c b/drivers/bus/ti-sysc.c index 3c4ae585704e..c951d857b575 100644 --- a/drivers/bus/ti-sysc.c +++ b/drivers/bus/ti-sysc.c @@ -24,8 +24,10 @@ struct ti_sysc_priv { static const struct udevice_id ti_sysc_ids[] = { {.compatible = "ti,sysc-omap2"}, + {.compatible = "ti,sysc-omap2-timer"}, {.compatible = "ti,sysc-omap4"}, {.compatible = "ti,sysc-omap4-simple"}, + {.compatible = "ti,sysc-omap4-timer"}, {.compatible = "ti,sysc-omap3430-sr"}, {.compatible = "ti,sysc-omap3630-sr"}, {.compatible = "ti,sysc-omap4-sr"}, -- 2.55.0
