summaryrefslogtreecommitdiff
path: root/sys/dev/usb
diff options
context:
space:
mode:
authorMichael Knudsen <mk@cvs.openbsd.org>2006-06-19 16:03:20 +0000
committerMichael Knudsen <mk@cvs.openbsd.org>2006-06-19 16:03:20 +0000
commitff47afecc5256d613ccadffd064301f092452de5 (patch)
tree48bb7ea063d5c24479c06207fd1cdf9d5246cd4e /sys/dev/usb
parentbd8b9dbe5c8943c56cf58461626c4d2af5288c97 (diff)
Don't sleep and then say we're going to sleep -- do it the other way
around because the other thing is just silly and confusing. ok dlg
Diffstat (limited to 'sys/dev/usb')
-rw-r--r--sys/dev/usb/if_atu.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/usb/if_atu.c b/sys/dev/usb/if_atu.c
index f4949aa3532..ead1de972c8 100644
--- a/sys/dev/usb/if_atu.c
+++ b/sys/dev/usb/if_atu.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_atu.c,v 1.70 2006/05/11 18:50:19 miod Exp $ */
+/* $OpenBSD: if_atu.c,v 1.71 2006/06/19 16:03:19 mk Exp $ */
/*
* Copyright (c) 2003, 2004
* Daan Vreeken <Danovitsch@Vitsch.net>. All rights reserved.
@@ -939,9 +939,9 @@ atu_internal_firmware(void *arg)
break;
default:
- usbd_delay_ms(sc->atu_udev, 100);
DPRINTFN(20, ("%s: sleeping for a while\n",
USBDEVNAME(sc->atu_dev)));
+ usbd_delay_ms(sc->atu_udev, 100);
break;
}