svn commit: r248411 - head/sys/modules/uart

Andrew Turner andrew at FreeBSD.org
Sun Mar 17 06:33:50 UTC 2013


Author: andrew
Date: Sun Mar 17 06:33:49 2013
New Revision: 248411
URL: http://svnweb.freebsd.org/changeset/base/248411

Log:
  In the uart module build ofw_bus_if.h on arm along with sparc64 as LINT
  fails when built locally without it.

Modified:
  head/sys/modules/uart/Makefile

Modified: head/sys/modules/uart/Makefile
==============================================================================
--- head/sys/modules/uart/Makefile	Sun Mar 17 03:09:08 2013	(r248410)
+++ head/sys/modules/uart/Makefile	Sun Mar 17 06:33:49 2013	(r248411)
@@ -4,6 +4,9 @@
 
 .if ${MACHINE_CPUARCH} == "sparc64"
 uart_bus_ebus=	uart_bus_ebus.c
+.endif
+
+.if ${MACHINE_CPUARCH} == "arm" || ${MACHINE_CPUARCH} == "sparc64"
 ofw_bus_if=	ofw_bus_if.h
 .endif
 


More information about the svn-src-all mailing list