diff options
author | Mugunthan V N <mugunthanvnm@ti.com> | 2015-09-28 16:17:48 +0530 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2015-10-22 14:43:58 -0400 |
commit | e5a098b5cc46e296af9d95315be1ea848839082c (patch) | |
tree | 25a8315eedf6a36cfead6849b49782b20b9de139 | |
parent | 3a64845e9d52d77b711b36a282e36f637f33d66b (diff) | |
download | u-boot-e5a098b5cc46e296af9d95315be1ea848839082c.tar.gz |
drivers: serial: serial_omap: add comaptibles for all ti platforms
Adding compatibles for am335x, am437x and dra7 platforms.
Signed-off-by: Mugunthan V N <mugunthanvnm@ti.com>
Reviewed-by: Lokesh Vutla <lokeshvutla@ti.com>
-rw-r--r-- | drivers/serial/serial_omap.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/serial/serial_omap.c b/drivers/serial/serial_omap.c index 9709444489..891cd7b7ed 100644 --- a/drivers/serial/serial_omap.c +++ b/drivers/serial/serial_omap.c @@ -16,8 +16,12 @@ DECLARE_GLOBAL_DATA_PTR; #if CONFIG_IS_ENABLED(OF_CONTROL) static const struct udevice_id omap_serial_ids[] = { + { .compatible = "ti,omap2-uart" }, { .compatible = "ti,omap3-uart" }, { .compatible = "ti,omap4-uart" }, + { .compatible = "ti,am3352-uart" }, + { .compatible = "ti,am4372-uart" }, + { .compatible = "ti,dra742-uart" }, { } }; |