]> git.ipfire.org Git - people/ms/u-boot.git/commitdiff
drivers: serial: serial_omap: add comaptibles for all ti platforms
authorMugunthan V N <mugunthanvnm@ti.com>
Mon, 28 Sep 2015 10:47:48 +0000 (16:17 +0530)
committerTom Rini <trini@konsulko.com>
Thu, 22 Oct 2015 18:43:58 +0000 (14:43 -0400)
Adding compatibles for am335x, am437x and dra7 platforms.

Signed-off-by: Mugunthan V N <mugunthanvnm@ti.com>
Reviewed-by: Lokesh Vutla <lokeshvutla@ti.com>
drivers/serial/serial_omap.c

index 970944448904c846599abfb69de4ce9a2d7b5346..891cd7b7ed6803d2a79096c8bdfca1d6f2d21f43 100644 (file)
@@ -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" },
        { }
 };