Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/arm/ixp12x0 fix typo



details:   https://anonhg.NetBSD.org/src/rev/a1df97bdff49
branches:  trunk
changeset: 551987:a1df97bdff49
user:      ichiro <ichiro%NetBSD.org@localhost>
date:      Mon Sep 15 05:11:31 2003 +0000

description:
fix typo
#if DEBUG -> #ifdef PCI_DEBUG

diffstat:

 sys/arch/arm/ixp12x0/ixp12x0.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r da373c28ec36 -r a1df97bdff49 sys/arch/arm/ixp12x0/ixp12x0.c
--- a/sys/arch/arm/ixp12x0/ixp12x0.c    Mon Sep 15 05:07:29 2003 +0000
+++ b/sys/arch/arm/ixp12x0/ixp12x0.c    Mon Sep 15 05:11:31 2003 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: ixp12x0.c,v 1.11 2003/07/13 07:15:22 igy Exp $ */
+/*     $NetBSD: ixp12x0.c,v 1.12 2003/09/15 05:11:31 ichiro Exp $ */
 /*
  * Copyright (c) 2002, 2003
  *     Ichiro FUKUHARA <ichiro%ichiro.org@localhost>.
@@ -33,7 +33,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ixp12x0.c,v 1.11 2003/07/13 07:15:22 igy Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ixp12x0.c,v 1.12 2003/09/15 05:11:31 ichiro Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -143,7 +143,7 @@
                SA_CONTROL) | 0x1;
        bus_space_write_4(sc->sc_iot, sc->sc_pci_ioh,
                SA_CONTROL, reg);
-#if DEBUG
+#ifdef PCI_DEBUG
        printf("SA_CONTROL = 0x%08x\n",
                bus_space_read_4(sc->sc_iot, sc->sc_pci_ioh, SA_CONTROL));
 #endif 



Home | Main Index | Thread Index | Old Index