diff options
author | rrs <rrs@FreeBSD.org> | 2009-10-30 08:51:37 +0000 |
---|---|---|
committer | rrs <rrs@FreeBSD.org> | 2009-10-30 08:51:37 +0000 |
commit | 31eaaf034e3434f0844b96d53fc577a268131ddc (patch) | |
tree | b99188c2cb78df8fcd3d74a7a160de5aa81be2d0 | |
parent | 6e4d7ad13075a62f123a82ae4c7b8a31bf0fab81 (diff) | |
download | FreeBSD-src-31eaaf034e3434f0844b96d53fc577a268131ddc.zip FreeBSD-src-31eaaf034e3434f0844b96d53fc577a268131ddc.tar.gz |
This is a temporary hack so we can get RMI to re-use the
ns8250 code. We will need to think of a better way for
code reuse for this (see sys/mips/rmi/uart_cpu_mips_xlr.c for where
it is used)
-rw-r--r-- | sys/dev/uart/uart_dev_ns8250.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/uart/uart_dev_ns8250.c b/sys/dev/uart/uart_dev_ns8250.c index c01fd61..4b9ec6a 100644 --- a/sys/dev/uart/uart_dev_ns8250.c +++ b/sys/dev/uart/uart_dev_ns8250.c @@ -224,7 +224,7 @@ static void ns8250_putc(struct uart_bas *bas, int); static int ns8250_rxready(struct uart_bas *bas); static int ns8250_getc(struct uart_bas *bas, struct mtx *); -static struct uart_ops uart_ns8250_ops = { +struct uart_ops uart_ns8250_ops = { .probe = ns8250_probe, .init = ns8250_init, .term = ns8250_term, |