summaryrefslogtreecommitdiff
path: root/sys/dev/usb/if_cue.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/dev/usb/if_cue.c')
-rw-r--r--sys/dev/usb/if_cue.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/dev/usb/if_cue.c b/sys/dev/usb/if_cue.c
index 8a425317383..532b7cba30d 100644
--- a/sys/dev/usb/if_cue.c
+++ b/sys/dev/usb/if_cue.c
@@ -1,5 +1,5 @@
-/* $OpenBSD: if_cue.c,v 1.2 2000/03/30 16:19:32 aaron Exp $ */
-/* $NetBSD: if_cue.c,v 1.20 2000/03/30 08:53:30 augustss Exp $ */
+/* $OpenBSD: if_cue.c,v 1.3 2000/04/04 22:52:30 aaron Exp $ */
+/* $NetBSD: if_cue.c,v 1.21 2000/04/02 21:25:41 augustss Exp $ */
/*
* Copyright (c) 1997, 1998, 1999, 2000
* Bill Paul <wpaul@ee.columbia.edu>. All rights reserved.
@@ -1192,6 +1192,8 @@ cue_send(sc, m, idx)
/* Transmit */
err = usbd_transfer(c->cue_xfer);
if (err != USBD_IN_PROGRESS) {
+ printf("%s: cue_send error=%s\n", USBDEVNAME(sc->cue_dev),
+ usbd_errstr(err));
cue_stop(sc);
return (EIO);
}