Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/arch/news68k/news68k Add a missing semicolon missed in r...
details: https://anonhg.NetBSD.org/src/rev/772615d0386b
branches: trunk
changeset: 1007029:772615d0386b
user: tsutsui <tsutsui%NetBSD.org@localhost>
date: Mon Feb 03 23:09:03 2020 +0000
description:
Add a missing semicolon missed in rev 1.27.
Noticed by recent pmap_update() macro change.
I wonder how I've missed this for 18 years..
diffstat:
sys/arch/news68k/news68k/machdep.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (27 lines):
diff -r d24ad746a1e4 -r 772615d0386b sys/arch/news68k/news68k/machdep.c
--- a/sys/arch/news68k/news68k/machdep.c Mon Feb 03 22:25:17 2020 +0000
+++ b/sys/arch/news68k/news68k/machdep.c Mon Feb 03 23:09:03 2020 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: machdep.c,v 1.106 2019/12/31 13:07:11 ad Exp $ */
+/* $NetBSD: machdep.c,v 1.107 2020/02/03 23:09:03 tsutsui Exp $ */
/*
* Copyright (c) 1988 University of Utah.
@@ -39,7 +39,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.106 2019/12/31 13:07:11 ad Exp $");
+__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.107 2020/02/03 23:09:03 tsutsui Exp $");
#include "opt_ddb.h"
#include "opt_compat_netbsd.h"
@@ -189,7 +189,7 @@
*/
for (i = 0; i < btoc(MSGBUFSIZE); i++)
pmap_kenter_pa((vaddr_t)msgbufaddr + i * PAGE_SIZE,
- avail_end + i * PAGE_SIZE, VM_PROT_READ|VM_PROT_WRITE, 0)
+ avail_end + i * PAGE_SIZE, VM_PROT_READ|VM_PROT_WRITE, 0);
pmap_update(pmap_kernel());
initmsgbuf(msgbufaddr, m68k_round_page(MSGBUFSIZE));
}
Home |
Main Index |
Thread Index |
Old Index