Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/arch/arm/arm32 Macro confusion - fortunately this has no...
details: https://anonhg.NetBSD.org/src/rev/6613e7d6b9ab
branches: trunk
changeset: 355366:6613e7d6b9ab
user: skrll <skrll%NetBSD.org@localhost>
date: Thu Jul 27 10:56:42 2017 +0000
description:
Macro confusion - fortunately this has no functional change.
diffstat:
sys/arch/arm/arm32/pmap.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (27 lines):
diff -r 4dc1389c67d9 -r 6613e7d6b9ab sys/arch/arm/arm32/pmap.c
--- a/sys/arch/arm/arm32/pmap.c Thu Jul 27 10:04:28 2017 +0000
+++ b/sys/arch/arm/arm32/pmap.c Thu Jul 27 10:56:42 2017 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: pmap.c,v 1.351 2017/07/27 08:10:41 skrll Exp $ */
+/* $NetBSD: pmap.c,v 1.352 2017/07/27 10:56:42 skrll Exp $ */
/*
* Copyright 2003 Wasabi Systems, Inc.
@@ -217,7 +217,7 @@
#include <arm/locore.h>
-__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.351 2017/07/27 08:10:41 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.352 2017/07/27 10:56:42 skrll Exp $");
//#define PMAP_DEBUG
#ifdef PMAP_DEBUG
@@ -6704,7 +6704,7 @@
KASSERT((va & ((L1_S_SIZE * (PAGE_SIZE / L2_T_SIZE)) - 1)) == 0);
KASSERT((l2pv->pv_pa & PGOFSET) == 0);
- const pd_entry_t npde = L1_S_DOM(PMAP_DOMAIN_KERNEL) | L1_C_PROTO
+ const pd_entry_t npde = L1_C_DOM(PMAP_DOMAIN_KERNEL) | L1_C_PROTO
| l2pv->pv_pa;
l1pte_set(pdep, npde);
Home |
Main Index |
Thread Index |
Old Index