Module Name: src
Committed By: he
Date: Sat Jan 2 07:53:29 UTC 2010
Modified Files:
src/sys/arch/arm/arm32: pmap.c
Log Message:
Remove a shadowed and unused local declaration so that this builds again.
To generate a diff of this commit:
cvs rdiff -u -r1.210 -r1.211 src/sys/arch/arm/arm32/pmap.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/arm/arm32/pmap.c
diff -u src/sys/arch/arm/arm32/pmap.c:1.210 src/sys/arch/arm/arm32/pmap.c:1.211
--- src/sys/arch/arm/arm32/pmap.c:1.210 Fri Jan 1 02:32:28 2010
+++ src/sys/arch/arm/arm32/pmap.c Sat Jan 2 07:53:29 2010
@@ -1,4 +1,4 @@
-/* $NetBSD: pmap.c,v 1.210 2010/01/01 02:32:28 uebayasi Exp $ */
+/* $NetBSD: pmap.c,v 1.211 2010/01/02 07:53:29 he Exp $ */
/*
* Copyright 2003 Wasabi Systems, Inc.
@@ -211,7 +211,7 @@
#include <machine/param.h>
#include <arm/arm32/katelib.h>
-__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.210 2010/01/01 02:32:28 uebayasi Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.211 2010/01/02 07:53:29 he Exp $");
#ifdef PMAP_DEBUG
@@ -2357,7 +2357,7 @@
static int
pmap_clean_page(struct pv_entry *pv, bool is_src)
{
- pmap_t pm, pm_to_clean = NULL;
+ pmap_t pm_to_clean = NULL;
struct pv_entry *npv;
u_int cache_needs_cleaning = 0;
u_int flags = 0;