From: Mugunthan V N Date: Mon, 28 Sep 2015 10:47:48 +0000 (+0530) Subject: drivers: serial: serial_omap: add comaptibles for all ti platforms X-Git-Tag: v2016.01-rc1~239 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e5a098b5cc46e296af9d95315be1ea848839082c;p=platform%2Fkernel%2Fu-boot.git drivers: serial: serial_omap: add comaptibles for all ti platforms Adding compatibles for am335x, am437x and dra7 platforms. Signed-off-by: Mugunthan V N Reviewed-by: Lokesh Vutla --- diff --git a/drivers/serial/serial_omap.c b/drivers/serial/serial_omap.c index 9709444..891cd7b 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" }, { } };