Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/luna68k/luna68k Fix one more fatal typo. Umm.



details:   https://anonhg.NetBSD.org/src/rev/e31cb08b38b5
branches:  trunk
changeset: 760294:e31cb08b38b5
user:      tsutsui <tsutsui%NetBSD.org@localhost>
date:      Sun Jan 02 07:51:02 2011 +0000

description:
Fix one more fatal typo. Umm.

diffstat:

 sys/arch/luna68k/luna68k/pmap_bootstrap.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r a6fb23278535 -r e31cb08b38b5 sys/arch/luna68k/luna68k/pmap_bootstrap.c
--- a/sys/arch/luna68k/luna68k/pmap_bootstrap.c Sun Jan 02 07:14:02 2011 +0000
+++ b/sys/arch/luna68k/luna68k/pmap_bootstrap.c Sun Jan 02 07:51:02 2011 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: pmap_bootstrap.c,v 1.28 2010/06/06 04:50:06 mrg Exp $  */
+/*     $NetBSD: pmap_bootstrap.c,v 1.29 2011/01/02 07:51:02 tsutsui Exp $      */
 
 /* 
  * Copyright (c) 1991, 1993
@@ -38,7 +38,7 @@
 #include "opt_m68k_arch.h"
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: pmap_bootstrap.c,v 1.28 2010/06/06 04:50:06 mrg Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pmap_bootstrap.c,v 1.29 2011/01/02 07:51:02 tsutsui Exp $");
 
 #include <sys/param.h>
 
@@ -187,7 +187,7 @@
                nl1desc = howmany(nl2desc, SG4_LEV2SIZE);
                ste = (st_entry_t *)kstpa;
                este = &ste[nl1desc];
-               protoste = (paddr_t)&pte[SG4_LEV1SIZE] | SG_U | SG_RW | SG_V;
+               protoste = (paddr_t)&ste[SG4_LEV1SIZE] | SG_U | SG_RW | SG_V;
                while (ste < este) {
                        *ste++ = protoste;
                        protoste += (SG4_LEV2SIZE * sizeof(st_entry_t));



Home | Main Index | Thread Index | Old Index