Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/xen/x86 More of maxv's "switch to proper types" - h...



details:   https://anonhg.NetBSD.org/src/rev/d3aeca8302b1
branches:  trunk
changeset: 451038:d3aeca8302b1
user:      kre <kre%NetBSD.org@localhost>
date:      Sat May 04 11:15:49 2019 +0000

description:
More of maxv's "switch to proper types" - hopefully unbreak i386 build.

diffstat:

 sys/arch/xen/x86/xenfunc.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 1375d53aa349 -r d3aeca8302b1 sys/arch/xen/x86/xenfunc.c
--- a/sys/arch/xen/x86/xenfunc.c        Sat May 04 10:07:10 2019 +0000
+++ b/sys/arch/xen/x86/xenfunc.c        Sat May 04 11:15:49 2019 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: xenfunc.c,v 1.25 2019/05/04 07:20:22 maxv Exp $        */
+/*     $NetBSD: xenfunc.c,v 1.26 2019/05/04 11:15:49 kre Exp $ */
 
 /*
  * Copyright (c) 2004 Christian Limpach.
@@ -26,7 +26,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: xenfunc.c,v 1.25 2019/05/04 07:20:22 maxv Exp $");
+__KERNEL_RCSID(0, "$NetBSD: xenfunc.c,v 1.26 2019/05/04 11:15:49 kre Exp $");
 
 #include <sys/param.h>
 
@@ -138,7 +138,7 @@
 
 #ifndef __x86_64__
 void
-lcr3(vaddr_t val)
+lcr3(register_t val)
 {
        int s = splvm(); /* XXXSMP */
        xpq_queue_pt_switch(xpmap_ptom_masked(val));



Home | Main Index | Thread Index | Old Index