diff options
| author | Warner Losh <imp@FreeBSD.org> | 2017-09-09 20:14:18 +0000 |
|---|---|---|
| committer | Warner Losh <imp@FreeBSD.org> | 2017-09-09 20:14:18 +0000 |
| commit | 834214a023b5eba2606d1e622842754c18c11904 (patch) | |
| tree | 4d4b2f4a97ad15eeb35202438881fc7e7e3042a8 /sys/modules/uart | |
| parent | 0c4622dab2e577226b032d5bdd3b00426e8f99e5 (diff) | |
Notes
Diffstat (limited to 'sys/modules/uart')
| -rw-r--r-- | sys/modules/uart/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/modules/uart/Makefile b/sys/modules/uart/Makefile index 02ec3953d814..49c7d5a2451f 100644 --- a/sys/modules/uart/Makefile +++ b/sys/modules/uart/Makefile @@ -25,12 +25,16 @@ _uart_cpu=uart_cpu_${MACHINE}.c uart_cpu_machine= ${_uart_cpu} .endif +.if ${MACHINE} == "arm64" +uart_dev_mvebu=uart_dev_mvebu.c +.endif + KMOD= uart SRCS= uart_bus_acpi.c ${uart_bus_ebus} uart_bus_isa.c uart_bus_pccard.c \ uart_bus_pci.c uart_bus_puc.c uart_bus_scc.c \ uart_core.c ${uart_cpu_machine} uart_dbg.c \ ${uart_dev_lpc} uart_dev_ns8250.c uart_dev_quicc.c uart_dev_sab82532.c \ - uart_dev_z8530.c uart_dev_mvebu.c \ + uart_dev_z8530.c ${uart_dev_mvebu} \ uart_if.c uart_if.h uart_subr.c uart_tty.c SRCS+= acpi_if.h bus_if.h card_if.h device_if.h isa_if.h ${ofw_bus_if} \ |
