summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authoraugustss <augustss@NetBSD.org>1998-12-28 02:20:28 +0000
committeraugustss <augustss@NetBSD.org>1998-12-28 02:20:28 +0000
commitcd36ca65ddd542d65546466981de0426dff7fdda (patch)
tree95bb63266fc7e3fba412b5324031f47aafff3cee /sys/dev
parent8fe37fa62c4c717840fa7e55838075021e885ffc (diff)
Fix typos.
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/usb/usb.c7
-rw-r--r--sys/dev/usb/usb.h9
2 files changed, 9 insertions, 7 deletions
diff --git a/sys/dev/usb/usb.c b/sys/dev/usb/usb.c
index 9b6f4d423ef..33d98dbe9c1 100644
--- a/sys/dev/usb/usb.c
+++ b/sys/dev/usb/usb.c
@@ -1,4 +1,4 @@
-/* $NetBSD: usb.c,v 1.7 1998/12/26 12:53:03 augustss Exp $ */
+/* $NetBSD: usb.c,v 1.8 1998/12/28 02:20:28 augustss Exp $ */
/*
* Copyright (c) 1998 The NetBSD Foundation, Inc.
@@ -38,8 +38,9 @@
*/
/*
- * USB spec: http://www.teleport.com/cgi-bin/mailmerge.cgi/~usb/cgiform.tpl
- * More USB specs at http://www.usb.org/developers/index.shtml
+ * USB specifications and other documentation can be found at
+ * http://www.usb.org/developers/data/ and
+ * http://www.usb.org/developers/index.html .
*/
#include <sys/param.h>
diff --git a/sys/dev/usb/usb.h b/sys/dev/usb/usb.h
index b5546851699..5af0e105191 100644
--- a/sys/dev/usb/usb.h
+++ b/sys/dev/usb/usb.h
@@ -1,4 +1,4 @@
-/* $NetBSD: usb.h,v 1.8 1998/12/26 12:53:03 augustss Exp $ */
+/* $NetBSD: usb.h,v 1.9 1998/12/28 02:20:28 augustss Exp $ */
/*
* Copyright (c) 1998 The NetBSD Foundation, Inc.
@@ -333,15 +333,16 @@ typedef struct {
* a power cycle. XXX Is this time in the spec?
*/
#define USB_POWER_DOWN_TIME 1000 /* ms */
+#define USB_PORT_POWER_DOWN_TIME 100 /* ms */
#if 0
-/* These are the value from the spec. */
+/* These are the values from the spec. */
#define USB_PORT_RESET_DELAY 10 /* ms */
#define USB_PORT_RESET_SETTLE 10 /* ms */
#define USB_PORT_POWERUP_DELAY 100 /* ms */
#define USB_SET_ADDRESS_SETTLE 2 /* ms */
#else
-/* Allow for bad device */
+/* Allow for marginal (i.e. non-conforming) devices. */
#define USB_PORT_RESET_DELAY 10 /* ms */
#define USB_PORT_RESET_RECOVERY 20 /* ms */
#define USB_PORT_POWERUP_DELAY 200 /* ms */
@@ -353,7 +354,7 @@ typedef struct {
#define USB_RESET_DELAY 100 /* ms XXX?*/
-#define USB_RESUME_DELAY 10 /* ms XXX?*/
+#define USB_RESUME_DELAY 10 /* ms XXX?*/
/*** ioctl() related stuff ***/