diff options
| author | Ruslan Bukin <br@FreeBSD.org> | 2013-11-12 18:02:56 +0000 |
|---|---|---|
| committer | Ruslan Bukin <br@FreeBSD.org> | 2013-11-12 18:02:56 +0000 |
| commit | 5c263f43ef6296996bddf92c2ec0b5ea9ea0d3e1 (patch) | |
| tree | 98f77503625a19a467b63b441b1274870b30b6df /sys/dev/uart | |
| parent | 63b9ae948d2bd1aaf60b497729c4939ba12f0d35 (diff) | |
Notes
Diffstat (limited to 'sys/dev/uart')
| -rw-r--r-- | sys/dev/uart/uart.h | 1 | ||||
| -rw-r--r-- | sys/dev/uart/uart_bus_fdt.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/sys/dev/uart/uart.h b/sys/dev/uart/uart.h index 095d368d43e1..4874488550a3 100644 --- a/sys/dev/uart/uart.h +++ b/sys/dev/uart/uart.h @@ -75,6 +75,7 @@ extern struct uart_class uart_lpc_class __attribute__((weak)); extern struct uart_class uart_pl011_class __attribute__((weak)); extern struct uart_class uart_cdnc_class __attribute__((weak)); extern struct uart_class uart_ti8250_class __attribute__((weak)); +extern struct uart_class uart_vybrid_class __attribute__((weak)); #ifdef FDT struct ofw_compat_data; diff --git a/sys/dev/uart/uart_bus_fdt.c b/sys/dev/uart/uart_bus_fdt.c index 39a6a1ce5ef7..259ab85d58d2 100644 --- a/sys/dev/uart/uart_bus_fdt.c +++ b/sys/dev/uart/uart_bus_fdt.c @@ -81,6 +81,7 @@ static struct ofw_compat_data compat_data[] = { {"fsl,imx27-uart", (uintptr_t)&uart_imx_class}, {"fsl,imx25-uart", (uintptr_t)&uart_imx_class}, {"fsl,imx21-uart", (uintptr_t)&uart_imx_class}, + {"fsl,mvf600-uart", (uintptr_t)&uart_vybrid_class}, {"lpc,uart", (uintptr_t)&uart_lpc_class}, {"ti,ns16550", (uintptr_t)&uart_ti8250_class}, {"ns16550", (uintptr_t)&uart_ns8250_class}, |
