svn commit: r356223 - head/sys/riscv/riscv

Kristof Provost kp at FreeBSD.org
Tue Dec 31 11:45:20 UTC 2019


Author: kp
Date: Tue Dec 31 11:45:19 2019
New Revision: 356223
URL: https://svnweb.freebsd.org/changeset/base/356223

Log:
  riscv: Remove unused variable
  
  Fix the build that was broken by r356221. Pointy hat to myself.

Modified:
  head/sys/riscv/riscv/mp_machdep.c

Modified: head/sys/riscv/riscv/mp_machdep.c
==============================================================================
--- head/sys/riscv/riscv/mp_machdep.c	Tue Dec 31 10:54:13 2019	(r356222)
+++ head/sys/riscv/riscv/mp_machdep.c	Tue Dec 31 11:45:19 2019	(r356223)
@@ -185,7 +185,7 @@ static void
 release_aps(void *dummy __unused)
 {
 	cpuset_t mask;
-	int cpu, i;
+	int i;
 
 	if (mp_ncpus == 1)
 		return;


More information about the svn-src-head mailing list