diff options
author | Lokesh Vutla <lokeshvutla@ti.com> | 2018-09-14 19:43:35 +0530 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-09-25 21:50:34 -0400 |
commit | c1523c65fc61d9ec8e779cbfb31314e94f500a3e (patch) | |
tree | be17171e440016d203c088d3622d2ec666eea355 | |
parent | 247b4f9f440f4eebd542f91e1064716200b5d4f5 (diff) |
serial: omap: Add support for AM654 uart controller
AM654 uses a UART controller that is compatible (partially) with
existing OMAP UART, Introduce a compatible for adding support
for this controller.
Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com>
-rw-r--r-- | drivers/serial/serial_omap.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/serial/serial_omap.c b/drivers/serial/serial_omap.c index d8a047bb71..af3c755f96 100644 --- a/drivers/serial/serial_omap.c +++ b/drivers/serial/serial_omap.c @@ -104,6 +104,7 @@ static const struct udevice_id omap_serial_ids[] = { { .compatible = "ti,am3352-uart", }, { .compatible = "ti,am4372-uart", }, { .compatible = "ti,dra742-uart", }, + { .compatible = "ti,am654-uart", }, {} }; #endif /* OF_CONTROL && !OF_PLATDATA */ |