Source-Changes-HG archive

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

[src/trunk]: src/sys/dev/cardbus Make it compile with options DEBUG.



details:   https://anonhg.NetBSD.org/src/rev/765cc2ae1f66
branches:  trunk
changeset: 481910:765cc2ae1f66
user:      itohy <itohy%NetBSD.org@localhost>
date:      Wed Feb 09 07:57:52 2000 +0000

description:
Make it compile with options DEBUG.
Reported by Kawamoto Yosihisa (PR #9379).

diffstat:

 sys/dev/cardbus/cardbus_map.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (23 lines):

diff -r 3db613e2d9f1 -r 765cc2ae1f66 sys/dev/cardbus/cardbus_map.c
--- a/sys/dev/cardbus/cardbus_map.c     Wed Feb 09 05:48:26 2000 +0000
+++ b/sys/dev/cardbus/cardbus_map.c     Wed Feb 09 07:57:52 2000 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: cardbus_map.c,v 1.8 2000/02/04 07:59:20 haya Exp $     */
+/*     $NetBSD: cardbus_map.c,v 1.9 2000/02/09 07:57:52 itohy Exp $    */
 
 /*
  * Copyright (c) 1999 and 2000
@@ -360,11 +360,11 @@
 
        if (sc->sc_iot == tag) {
                /* bus space is io space */
-               DPRINTF(("%s: unmap i/o space\n", sc->sc_dev.xname));
+               DPRINTF(("%s: unmap i/o space\n", sc->sc_dev.dv_xname));
                rb = sc->sc_rbus_iot;
        } if (sc->sc_memt == tag) {
                /* bus space is memory space */
-               DPRINTF(("%s: unmap mem space\n", sc->sc_dev.xname));
+               DPRINTF(("%s: unmap mem space\n", sc->sc_dev.dv_xname));
                rb = sc->sc_rbus_memt;
        } else {
                return 1;



Home | Main Index | Thread Index | Old Index