Date: Sun, 22 Dec 2019 22:10:21 +0000 (UTC) From: Mark Johnston <markj@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r356030 - head/sys/modules/uart Message-ID: <201912222210.xBMMALeD032557@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201912222210.xBMMALeD032557>