diff options
author | ian <ian@FreeBSD.org> | 2014-05-17 21:46:25 +0000 |
---|---|---|
committer | ian <ian@FreeBSD.org> | 2014-05-17 21:46:25 +0000 |
commit | 9d16e04a2f779a947e7b68cb5ddde3ec3cea847a (patch) | |
tree | 900d44f878f1188f57b6c65922ceb144f38c03b9 /sys/dev/uart | |
parent | 60aa355ac436ba73dd357d7a0a08de470a5040af (diff) | |
download | FreeBSD-src-9d16e04a2f779a947e7b68cb5ddde3ec3cea847a.zip FreeBSD-src-9d16e04a2f779a947e7b68cb5ddde3ec3cea847a.tar.gz |
MFC 264203, 264204, 264206, 264218:
Tell VM we now have ARM platforms with physically discontiguous memory.
Define the full 1024M of ram on the imx51 and imx53 boards.
Use a more professional uart device description.
Diffstat (limited to 'sys/dev/uart')
-rw-r--r-- | sys/dev/uart/uart_dev_imx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/uart/uart_dev_imx.c b/sys/dev/uart/uart_dev_imx.c index e99cf77..9740922 100644 --- a/sys/dev/uart/uart_dev_imx.c +++ b/sys/dev/uart/uart_dev_imx.c @@ -352,7 +352,7 @@ imx_uart_bus_probe(struct uart_softc *sc) sc->sc_rxfifosz = 1; sc->sc_txfifosz = 1; - device_set_desc(sc->sc_dev, "imx_uart"); + device_set_desc(sc->sc_dev, "Freescale i.MX UART"); return (0); } |