svn commit: r356030 - head/sys/modules/uart
Mark Johnston
markj at FreeBSD.org
Sun Dec 22 22:10:21 UTC 2019
Author: markj
Date: Sun Dec 22 22:10:20 2019
New Revision: 356030
URL: https://svnweb.freebsd.org/changeset/base/356030
Log:
Compile uart_cpu_acpi.c, added in r348195, into uart.ko.
PR: 242771
MFC after: 3 days
Sponsored by: The FreeBSD Foundation
Modified:
head/sys/modules/uart/Makefile
Modified: head/sys/modules/uart/Makefile
==============================================================================
--- head/sys/modules/uart/Makefile Sun Dec 22 21:56:47 2019 (r356029)
+++ head/sys/modules/uart/Makefile Sun Dec 22 22:10:20 2019 (r356030)
@@ -5,6 +5,7 @@
.if ${MACHINE_CPUARCH} == "aarch64" || ${MACHINE_CPUARCH} == "amd64" || \
${MACHINE_CPUARCH} == "i386"
uart_bus_acpi=uart_bus_acpi.c
+uart_cpu_acpi=uart_cpu_acpi.c
.endif
.if ${MACHINE_CPUARCH} == "sparc64"
@@ -34,7 +35,7 @@ uart_dev_mu=uart_dev_mu.c
KMOD= uart
SRCS= ${uart_bus_acpi} ${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_core.c ${uart_cpu_acpi} ${uart_cpu_machine} uart_dbg.c \
${uart_dev_mvebu} uart_dev_ns8250.c ${uart_dev_mu} \
uart_dev_quicc.c uart_dev_sab82532.c uart_dev_z8530.c \
uart_if.c uart_if.h uart_subr.c uart_tty.c
More information about the svn-src-all
mailing list