diff options
author | Andrew Turner <andrew@FreeBSD.org> | 2018-02-25 19:33:27 +0000 |
---|---|---|
committer | Andrew Turner <andrew@FreeBSD.org> | 2018-02-25 19:33:27 +0000 |
commit | db65b25f88676dc213bf6da75e257cf3727b15a5 (patch) | |
tree | 7cd3ef909ad8218fd28b9cde37324debcd8ba5fb | |
parent | bf56e64a4c564cd31300ccea8dbaf84670800e6a (diff) |
Notes
-rw-r--r-- | sys/dev/uart/uart_dev_pl011.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/uart/uart_dev_pl011.c b/sys/dev/uart/uart_dev_pl011.c index 3f232d5f6e8a..cfa47f63068b 100644 --- a/sys/dev/uart/uart_dev_pl011.c +++ b/sys/dev/uart/uart_dev_pl011.c @@ -323,11 +323,11 @@ static struct uart_class uart_pl011_class = { #ifdef FDT -static struct ofw_compat_data compat_data[] = { +static struct ofw_compat_data fdt_compat_data[] = { {"arm,pl011", (uintptr_t)&uart_pl011_class}, {NULL, (uintptr_t)NULL}, }; -UART_FDT_CLASS_AND_DEVICE(compat_data); +UART_FDT_CLASS_AND_DEVICE(fdt_compat_data); #endif #ifdef DEV_ACPI |