diff options
author | sasano <sasano@cvs.openbsd.org> | 2014-05-01 03:45:09 +0000 |
---|---|---|
committer | sasano <sasano@cvs.openbsd.org> | 2014-05-01 03:45:09 +0000 |
commit | 50928ca59f603e99a9cd95038ab493fdb3ce338e (patch) | |
tree | 2dd8aff4455c51d1e7d4923aed55fecd0d481da2 /sys/dev/usb | |
parent | 7f93f8160b8a42e0898c894d74c867b3f7b5b70a (diff) |
fixed some debug messages
ok by dcoppa@
Diffstat (limited to 'sys/dev/usb')
-rw-r--r-- | sys/dev/usb/umodem.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/dev/usb/umodem.c b/sys/dev/usb/umodem.c index f01df9ce86b..2a5c95ebce6 100644 --- a/sys/dev/usb/umodem.c +++ b/sys/dev/usb/umodem.c @@ -1,4 +1,4 @@ -/* $OpenBSD: umodem.c,v 1.55 2014/01/30 20:37:03 mpi Exp $ */ +/* $OpenBSD: umodem.c,v 1.56 2014/05/01 03:45:08 sasano Exp $ */ /* $NetBSD: umodem.c,v 1.45 2002/09/23 05:51:23 simonb Exp $ */ /* @@ -576,7 +576,7 @@ umodem_ioctl(void *addr, int portno, u_long cmd, caddr_t data, int flag, if (usbd_is_dying(sc->sc_udev)) return (EIO); - DPRINTF(("umodemioctl: cmd=0x%08lx\n", cmd)); + DPRINTF(("umodem_ioctl: cmd=0x%08lx\n", cmd)); switch (cmd) { case USB_GET_CM_OVER_DATA: @@ -590,7 +590,7 @@ umodem_ioctl(void *addr, int portno, u_long cmd, caddr_t data, int flag, break; default: - DPRINTF(("umodemioctl: unknown\n")); + DPRINTF(("umodem_ioctl: unknown\n")); error = ENOTTY; break; } @@ -601,7 +601,7 @@ umodem_ioctl(void *addr, int portno, u_long cmd, caddr_t data, int flag, void umodem_dtr(struct umodem_softc *sc, int onoff) { - DPRINTF(("umodem_modem: onoff=%d\n", onoff)); + DPRINTF(("umodem_dtr: onoff=%d\n", onoff)); if (sc->sc_dtr == onoff) return; @@ -613,7 +613,7 @@ umodem_dtr(struct umodem_softc *sc, int onoff) void umodem_rts(struct umodem_softc *sc, int onoff) { - DPRINTF(("umodem_modem: onoff=%d\n", onoff)); + DPRINTF(("umodem_rts: onoff=%d\n", onoff)); if (sc->sc_rts == onoff) return; |