Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 31 Dec 2019 11:45:19 +0000 (UTC)
From:      Kristof Provost <kp@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r356223 - head/sys/riscv/riscv
Message-ID:  <201912311145.xBVBjJrp088517@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201912311145.xBVBjJrp088517>