Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/sparc64/dev Fix a typo in a DIAGNOSTIC check.



details:   https://anonhg.NetBSD.org/src/rev/4bb1026754ed
branches:  trunk
changeset: 516148:4bb1026754ed
user:      thorpej <thorpej%NetBSD.org@localhost>
date:      Wed Oct 17 18:43:04 2001 +0000

description:
Fix a typo in a DIAGNOSTIC check.

diffstat:

 sys/arch/sparc64/dev/iommu.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (20 lines):

diff -r 1f4eaa1d686e -r 4bb1026754ed sys/arch/sparc64/dev/iommu.c
--- a/sys/arch/sparc64/dev/iommu.c      Wed Oct 17 18:41:20 2001 +0000
+++ b/sys/arch/sparc64/dev/iommu.c      Wed Oct 17 18:43:04 2001 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: iommu.c,v 1.43 2001/10/08 19:24:20 eeh Exp $   */
+/*     $NetBSD: iommu.c,v 1.44 2001/10/17 18:43:04 thorpej Exp $       */
 
 /*
  * Copyright (c) 1999, 2000 Matthew R. Green
@@ -489,8 +489,8 @@
                microtime(&cur);
 
 #ifdef DIAGNOSTIC
-       if ((!ldxa(is->is_flushpa, ASI_PHYS_CACHED) ||
-               !ldxa(is->is_flushpa + 8, ASI_PHYS_CACHED)) {
+       if (!ldxa(is->is_flushpa, ASI_PHYS_CACHED) ||
+           !ldxa(is->is_flushpa + 8, ASI_PHYS_CACHED)) {
                printf("iommu_strbuf_flush_done: flush timeout %p,%p at %p\n",
                        (void *)(u_long)is->is_flush[0],
                        (void *)(u_long)is->is_flush[1],



Home | Main Index | Thread Index | Old Index