More sun4m/sun4d common stuff.

This commit is contained in:
thorpej 2002-07-17 15:57:12 +00:00
parent 45af102cdd
commit b122660639
2 changed files with 6 additions and 6 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: kgdb_machdep.c,v 1.10 2001/12/04 00:05:07 darrenr Exp $ */
/* $NetBSD: kgdb_machdep.c,v 1.11 2002/07/17 15:57:12 thorpej Exp $ */
/*-
* Copyright (c) 1997 The NetBSD Foundation, Inc.
* All rights reserved.
@ -371,8 +371,8 @@ kgdb_acc(va, len)
return (0);
for (; va < eva; va += NBPG) {
#if defined(SUN4M)
if (CPU_ISSUN4M) {
#if defined(SUN4M) || defined(SUN4D)
if (CPU_HAS_SRMMU) {
pte = getpte4m(va);
if ((pte & SRMMU_TETYPE) != SRMMU_TEPTE)
return (0);

View File

@ -1,4 +1,4 @@
/* $NetBSD: machdep.c,v 1.196 2002/07/17 04:55:57 thorpej Exp $ */
/* $NetBSD: machdep.c,v 1.197 2002/07/17 15:57:12 thorpej Exp $ */
/*-
* Copyright (c) 1996, 1997, 1998 The NetBSD Foundation, Inc.
@ -1057,8 +1057,8 @@ caddr_t addr;
int res;
int s;
if (CPU_ISSUN4M) {
printf("warning: ldcontrolb called in sun4m\n");
if (CPU_ISSUN4M || CPU_ISSUN4D) {
printf("warning: ldcontrolb called on sun4m/sun4d\n");
return 0;
}