diff options
author | Adam Ford <aford173@gmail.com> | 2018-10-07 17:42:42 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-10-22 09:18:49 -0400 |
commit | c3aa8513221c9abbe8832873dde2c96b60b5bb4b (patch) | |
tree | 816acd9bcc6698cc929ffe40ce69f3a756e5ffd5 | |
parent | f4db3b68c14dc93bae338f8da393d2000025b5bc (diff) | |
download | u-boot-c3aa8513221c9abbe8832873dde2c96b60b5bb4b.zip u-boot-c3aa8513221c9abbe8832873dde2c96b60b5bb4b.tar.gz u-boot-c3aa8513221c9abbe8832873dde2c96b60b5bb4b.tar.bz2 |
ARM: omap3logic: Specify DM serial driver as omap_serial
With the new omap_serial driver, this patch uses this instead
from the former ns16550_serial driver. Even though the
omap_serial driver is essentially the same.
Signed-off-by: Adam Ford <aford173@gmail.com>
-rw-r--r-- | board/logicpd/omap3som/omap3logic.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/logicpd/omap3som/omap3logic.c b/board/logicpd/omap3som/omap3logic.c index 2f63e76..cd6dd72 100644 --- a/board/logicpd/omap3som/omap3logic.c +++ b/board/logicpd/omap3som/omap3logic.c @@ -50,7 +50,7 @@ static const struct ns16550_platdata omap3logic_serial = { }; U_BOOT_DEVICE(omap3logic_uart) = { - "ns16550_serial", + "omap_serial", &omap3logic_serial }; |