svn commit: r333934 - head/sys/powerpc/pseries

Nathan Whitehorn nwhitehorn at FreeBSD.org
Sun May 20 18:26:11 UTC 2018


Author: nwhitehorn
Date: Sun May 20 18:26:09 2018
New Revision: 333934
URL: https://svnweb.freebsd.org/changeset/base/333934

Log:
  Fix build with PSERIES but not POWERNV defined.

Modified:
  head/sys/powerpc/pseries/xics.c

Modified: head/sys/powerpc/pseries/xics.c
==============================================================================
--- head/sys/powerpc/pseries/xics.c	Sun May 20 18:18:56 2018	(r333933)
+++ head/sys/powerpc/pseries/xics.c	Sun May 20 18:26:09 2018	(r333934)
@@ -139,7 +139,9 @@ static driver_t xics_driver = {
 	0
 };
 
+#ifdef POWERNV
 static uint32_t cpu_xirr[MAXCPU];
+#endif
 
 static devclass_t xicp_devclass;
 static devclass_t xics_devclass;


More information about the svn-src-all mailing list