summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorMarcus Glocker <mglocker@cvs.openbsd.org>2008-08-09 08:42:04 +0000
committerMarcus Glocker <mglocker@cvs.openbsd.org>2008-08-09 08:42:04 +0000
commit690491d0cc42772963d6764f43e2ffc506b42f15 (patch)
tree3fd5b6751a5ef3bca8014dcbb442df166aeaefcd /sys
parented82e225ba76dceda0b63ba29d5076ad9f0d4c2a (diff)
Revert last commit, it doesn't always help, we need to find another
solution.
Diffstat (limited to 'sys')
-rw-r--r--sys/dev/usb/uvideo.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/sys/dev/usb/uvideo.c b/sys/dev/usb/uvideo.c
index b4c3307989c..f0c8eaa522f 100644
--- a/sys/dev/usb/uvideo.c
+++ b/sys/dev/usb/uvideo.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: uvideo.c,v 1.76 2008/08/09 07:57:48 mglocker Exp $ */
+/* $OpenBSD: uvideo.c,v 1.77 2008/08/09 08:42:03 mglocker Exp $ */
/*
* Copyright (c) 2008 Robert Nagy <robert@openbsd.org>
@@ -1035,9 +1035,6 @@ uvideo_vs_negotiation(struct uvideo_softc *sc, int commit)
bzero(probe_data, sizeof(probe_data));
error = uvideo_vs_get_probe(sc, probe_data, GET_DEF);
if (error != USBD_NORMAL_COMPLETION) {
- /* relax a moment and retry with GET_CUR */
- usbd_delay_ms(sc->sc_udev, 100);
-
error = uvideo_vs_get_probe(sc, probe_data, GET_CUR);
if (error != USBD_NORMAL_COMPLETION)
return (error);