diff options
author | 2015-03-13 12:12:42 +0000 | |
---|---|---|
committer | 2015-03-13 12:12:42 +0000 | |
commit | 7978aa7a69e607ed413575a7f8535e04308f64fb (patch) | |
tree | 4812e735b2f724043131aa71dec618a4f3a7554f /sys | |
parent | Set bus_space 'stride' for 2 and 4 bytes read/write. (diff) | |
download | wireguard-openbsd-7978aa7a69e607ed413575a7f8535e04308f64fb.tar.xz wireguard-openbsd-7978aa7a69e607ed413575a7f8535e04308f64fb.zip |
Correct debug messages.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/luna88k/cbus/i82365_cbus.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/arch/luna88k/cbus/i82365_cbus.c b/sys/arch/luna88k/cbus/i82365_cbus.c index dc73f4923ba..39c1b08f412 100644 --- a/sys/arch/luna88k/cbus/i82365_cbus.c +++ b/sys/arch/luna88k/cbus/i82365_cbus.c @@ -1,4 +1,4 @@ -/* $OpenBSD: i82365_cbus.c,v 1.2 2015/03/13 12:10:14 aoyama Exp $ */ +/* $OpenBSD: i82365_cbus.c,v 1.3 2015/03/13 12:12:42 aoyama Exp $ */ /* $NetBSD: i82365_isa.c,v 1.11 1998/06/09 07:25:00 thorpej Exp $ */ /* @@ -470,7 +470,7 @@ pcic_cbus_chip_io_alloc(pcmcia_chipset_handle_t pch, bus_addr_t start, ioaddr = start; if (bus_space_map(iot, start, size, 0, &ioh)) return (1); - DPRINTF(("pcic_chip_io_alloc map port %lx+%lx\n", + DPRINTF(("pcic_cbus_chip_io_alloc map port %lx+%lx\n", (u_long)ioaddr, (u_long)size)); } else if (sc->ranges) { /* @@ -497,7 +497,7 @@ pcic_cbus_chip_io_alloc(pcmcia_chipset_handle_t pch, bus_addr_t start, if (fin < beg || fin - beg < size) continue; - DPRINTF(("pcic_chip_io_alloc beg-fin %lx-%lx\n", + DPRINTF(("pcic_cbus_chip_io_alloc beg-fin %lx-%lx\n", (u_long)beg, (u_long)fin)); if (bus_space_map(iot, beg, size, 0, &ioh) == 0) { ioaddr = beg; @@ -506,13 +506,13 @@ pcic_cbus_chip_io_alloc(pcmcia_chipset_handle_t pch, bus_addr_t start, } if (range->start == 0) return (1); - DPRINTF(("pcic_chip_io_alloc alloc port %lx+%lx\n", + DPRINTF(("pcic_cbus_chip_io_alloc alloc port %lx+%lx\n", (u_long)ioaddr, (u_long)size)); } else { if (bus_space_map(iot, sc->iobase, size, 0, &ioh)) return (1); ioaddr = sc->iobase; - DPRINTF(("pcic_chip_io_alloc alloc port %lx+%lx\n", + DPRINTF(("pcic_cbus_chip_io_alloc alloc port %lx+%lx\n", (u_long)ioaddr, (u_long)size)); } |