Module Name:    src
Committed By:   christos
Date:           Sun Jan 24 16:13:19 UTC 2016

Modified Files:
        src/sys/arch/mips/include: reg.h

Log Message:
use namespace protected types.


To generate a diff of this commit:
cvs rdiff -u -r1.15 -r1.16 src/sys/arch/mips/include/reg.h

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/mips/include/reg.h
diff -u src/sys/arch/mips/include/reg.h:1.15 src/sys/arch/mips/include/reg.h:1.16
--- src/sys/arch/mips/include/reg.h:1.15	Tue Aug 16 02:58:15 2011
+++ src/sys/arch/mips/include/reg.h	Sun Jan 24 11:13:19 2016
@@ -1,4 +1,4 @@
-/*	$NetBSD: reg.h,v 1.15 2011/08/16 06:58:15 matt Exp $	*/
+/*	$NetBSD: reg.h,v 1.16 2016/01/24 16:13:19 christos Exp $	*/
 
 /*
  * Copyright (c) 1988 University of Utah.
@@ -43,15 +43,15 @@
 
 
 struct reg {
-	mips_reg_t	r_regs[38];
+	__register_t	r_regs[38];
 };
 
 struct fpreg {
-	mips_fpreg_t	r_regs[33];
+	__fpregister_t	r_regs[33];
 };
 
 struct dspreg {
-	mips_reg_t	r_regs[8];
+	__register_t	r_regs[8];
 };
 
 #if defined(__mips_n32) || defined(__mips_n64)

Reply via email to