summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormiod <miod@openbsd.org>2008-06-15 18:30:08 +0000
committermiod <miod@openbsd.org>2008-06-15 18:30:08 +0000
commit253f6cb50ceb295a419cbdcc4dcfdfd65f8e4328 (patch)
tree6161780a8089fb090653d25acd731f4ec1a1eed1
parentexpand the quirk framework to enable device class match (diff)
downloadwireguard-openbsd-253f6cb50ceb295a419cbdcc4dcfdfd65f8e4328.tar.xz
wireguard-openbsd-253f6cb50ceb295a419cbdcc4dcfdfd65f8e4328.zip
typo
-rw-r--r--sys/dev/usb/usb_quirks.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/usb/usb_quirks.c b/sys/dev/usb/usb_quirks.c
index 38f47ad55d4..776a08f8a80 100644
--- a/sys/dev/usb/usb_quirks.c
+++ b/sys/dev/usb/usb_quirks.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: usb_quirks.c,v 1.38 2008/06/15 18:10:03 yuo Exp $ */
+/* $OpenBSD: usb_quirks.c,v 1.39 2008/06/15 18:30:08 miod Exp $ */
/* $NetBSD: usb_quirks.c,v 1.45 2003/05/10 17:47:14 hamajima Exp $ */
/* $FreeBSD: src/sys/dev/usb/usb_quirks.c,v 1.30 2003/01/02 04:15:55 imp Exp $ */
@@ -197,7 +197,7 @@ usbd_find_quirk(usb_device_descriptor_t *d)
return (&t->quirks);
}
}
- /* no device specific quirks found, serarch class specific entry */
+ /* no device specific quirks found, search class specific entry */
for (td = usb_dev_quirks; td->bDeviceClass != 0; td++) {
if (td->bDeviceClass == d->bDeviceClass &&
(td->bDeviceSubClass == bANY ||