diff options
author | ian <ian@FreeBSD.org> | 2013-12-13 22:48:01 +0000 |
---|---|---|
committer | ian <ian@FreeBSD.org> | 2013-12-13 22:48:01 +0000 |
commit | cee3a0f503a32d67b6552bc3b75fa3049844e0b4 (patch) | |
tree | 9c27a65dba1875f58bf32c17fba457c2382f805d /sys/dev/uart/uart.h | |
parent | 2b338fd3cf33e292a21262c8da8e5f3025a8eb79 (diff) | |
download | FreeBSD-src-cee3a0f503a32d67b6552bc3b75fa3049844e0b4.zip FreeBSD-src-cee3a0f503a32d67b6552bc3b75fa3049844e0b4.tar.gz |
MFC r257556:
Arrange for uart_cpu_fdt's probe() routine to use the same table of compat
strings as uart_bus_fdt's probe().
Diffstat (limited to 'sys/dev/uart/uart.h')
-rw-r--r-- | sys/dev/uart/uart.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sys/dev/uart/uart.h b/sys/dev/uart/uart.h index 840d783..095d368 100644 --- a/sys/dev/uart/uart.h +++ b/sys/dev/uart/uart.h @@ -76,6 +76,11 @@ 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)); +#ifdef FDT +struct ofw_compat_data; +extern const struct ofw_compat_data *uart_fdt_compat_data; +#endif + #ifdef PC98 struct uart_class *uart_pc98_getdev(u_long port); #endif |