diff options
author | Nathan Binkert <nate@cvs.openbsd.org> | 2002-05-07 20:19:26 +0000 |
---|---|---|
committer | Nathan Binkert <nate@cvs.openbsd.org> | 2002-05-07 20:19:26 +0000 |
commit | 34687343798ec65876c3454d71bd01a375f262b0 (patch) | |
tree | 2ed54945a2010f3a08d94c7a1f1a3881305bf36e | |
parent | 1ecb059e1bc243058cd1229ee6da5f7081f9848d (diff) |
Fix uvisor for what's currently in the tree
-rw-r--r-- | sys/dev/usb/uvisor.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/usb/uvisor.c b/sys/dev/usb/uvisor.c index 6f6cb076447..c54ba16927a 100644 --- a/sys/dev/usb/uvisor.c +++ b/sys/dev/usb/uvisor.c @@ -1,4 +1,4 @@ -/* $OpenBSD: uvisor.c,v 1.6 2002/05/07 20:00:38 nate Exp $ */ +/* $OpenBSD: uvisor.c,v 1.7 2002/05/07 20:19:25 nate Exp $ */ /* $NetBSD: uvisor.c,v 1.14 2002/02/27 23:00:03 augustss Exp $ */ /* @@ -360,7 +360,7 @@ uvisor_init(struct uvisor_softc *sc, struct uvisor_connection_info *ci) USETW(req.wIndex, 0); USETW(req.wLength, UVISOR_CONNECTION_INFO_SIZE); err = usbd_do_request_flags(sc->sc_udev, &req, ci, - USBD_SHORT_XFER_OK, &actlen, USBD_DEFAULT_TIMEOUT); + USBD_SHORT_XFER_OK, &actlen); if (err) return (err); @@ -416,5 +416,5 @@ uvisor_close(void *addr, int portno) USETW(req.wIndex, 0); USETW(req.wLength, UVISOR_CONNECTION_INFO_SIZE); (void)usbd_do_request_flags(sc->sc_udev, &req, &coninfo, - USBD_SHORT_XFER_OK, &actlen, USBD_DEFAULT_TIMEOUT); + USBD_SHORT_XFER_OK, &actlen); } |