Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/mips/include u_int32_t -> uint32_t



details:   https://anonhg.NetBSD.org/src/rev/7918cd11cd47
branches:  trunk
changeset: 338847:7918cd11cd47
user:      matt <matt%NetBSD.org@localhost>
date:      Thu Jun 11 15:36:26 2015 +0000

description:
u_int32_t -> uint32_t

diffstat:

 sys/arch/mips/include/kcore.h |  15 +++++++--------
 1 files changed, 7 insertions(+), 8 deletions(-)

diffs (29 lines):

diff -r 8f48276e1d63 -r 7918cd11cd47 sys/arch/mips/include/kcore.h
--- a/sys/arch/mips/include/kcore.h     Thu Jun 11 15:15:27 2015 +0000
+++ b/sys/arch/mips/include/kcore.h     Thu Jun 11 15:36:26 2015 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: kcore.h,v 1.1 1998/02/19 23:06:11 thorpej Exp $        */
+/*     $NetBSD: kcore.h,v 1.2 2015/06/11 15:36:26 matt Exp $   */
 
 /*
  * Copyright (c) 1996 Carnegie-Mellon University.
@@ -36,13 +36,12 @@
 #define _MIPS_KCORE_H_
 
 typedef struct cpu_kcore_hdr {
-       u_int32_t       sysmappa;               /* PA of Sysmap */
-       u_int32_t       sysmapsize;             /* size of Sysmap */
-       u_int32_t       archlevel;              /* MIPS architecture level */
-       u_int32_t       pg_shift;               /* PTE page frame num shift */
-       u_int32_t       pg_frame;               /* PTE page frame num mask */
-       u_int32_t       pg_v;                   /* PTE valid bit */
-       u_int32_t       nmemsegs;               /* Number of RAM segments */
+       uint64_t        sysmappa;               /* PA of Sysmap */
+       uint32_t        archlevel;              /* MIPS architecture level */
+       uint32_t        pg_shift;               /* PTE page frame num shift */
+       uint32_t        pg_frame;               /* PTE page frame num mask */
+       uint32_t        pg_v;                   /* PTE valid bit */
+       uint32_t        nmemsegs;               /* Number of RAM segments */
 #if 0
        phys_ram_seg_t  memsegs[];              /* RAM segments */
 #endif



Home | Main Index | Thread Index | Old Index