diff options
author | Jason Downs <downsj@cvs.openbsd.org> | 1997-09-17 06:47:23 +0000 |
---|---|---|
committer | Jason Downs <downsj@cvs.openbsd.org> | 1997-09-17 06:47:23 +0000 |
commit | a53c76d8206c35d6e769479df16512e32cecd314 (patch) | |
tree | d859e8328321d144b06be62b083047a6c9bf62b7 /sys/arch/sparc/include/pte.h | |
parent | 98c6f7749315311376108135d25b0d86a7f8320a (diff) |
NETBSD_CURRENT_970916. Lot's just ID changes, since changes don't apply to
us. Includes some pmap changes, for which I don't have the original commit
message(s) handy.
Diffstat (limited to 'sys/arch/sparc/include/pte.h')
-rw-r--r-- | sys/arch/sparc/include/pte.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/sparc/include/pte.h b/sys/arch/sparc/include/pte.h index 3a7fd59a127..fb834b38a48 100644 --- a/sys/arch/sparc/include/pte.h +++ b/sys/arch/sparc/include/pte.h @@ -1,5 +1,5 @@ -/* $OpenBSD: pte.h,v 1.3 1997/08/08 08:26:42 downsj Exp $ */ -/* $NetBSD: pte.h,v 1.18 1997/05/15 22:25:45 pk Exp $ */ +/* $OpenBSD: pte.h,v 1.4 1997/09/17 06:47:14 downsj Exp $ */ +/* $NetBSD: pte.h,v 1.19 1997/08/05 11:00:10 pk Exp $ */ /* * Copyright (c) 1996 @@ -240,7 +240,7 @@ extern int mmu_has_hole; #if defined(SUN4M) /* Optimization: sun4m, sun4c have same page */ #if defined(SUN4) /* size, so they're used interchangeably */ #define VA_VPG(va) (cputyp==CPU_SUN4 ? VA_SUN4_VPG(va) : VA_SUN4C_VPG(va)) -#define VA_OFF(VA) (cputyp==CPU_SUN4 ? VA_SUN4_OFF(va) : VA_SUN4C_OFF(va)) +#define VA_OFF(va) (cputyp==CPU_SUN4 ? VA_SUN4_OFF(va) : VA_SUN4C_OFF(va)) #else #define VA_VPG(va) VA_SUN4M_VPG(va) #define VA_OFF(va) VA_SUN4M_OFF(va) |