diff options
| author | tonnerre <tonnerre@NetBSD.org> | 2008-07-16 08:43:01 +0000 |
|---|---|---|
| committer | tonnerre <tonnerre@NetBSD.org> | 2008-07-16 08:43:01 +0000 |
| commit | 232e862b923fd25d38e9c0c7558918e2e03c59da (patch) | |
| tree | a07445714c70aad06aac940df8dac3de3e7b44f4 /sys/dev | |
| parent | a1677d385b8744b55e4c07366e3d73a980f08575 (diff) | |
Don't ignore poor retarded ubt(4) devices which have vendor and product id
== 0. Discovered by mballmer@obsd, ok'd by plucky@.
Diffstat (limited to 'sys/dev')
| -rw-r--r-- | sys/dev/usb/ubt.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/dev/usb/ubt.c b/sys/dev/usb/ubt.c index dbce22a3336..337ca986944 100644 --- a/sys/dev/usb/ubt.c +++ b/sys/dev/usb/ubt.c @@ -1,4 +1,4 @@ -/* $NetBSD: ubt.c,v 1.32 2008/05/24 16:40:58 cube Exp $ */ +/* $NetBSD: ubt.c,v 1.33 2008/07/16 08:43:01 tonnerre Exp $ */ /*- * Copyright (c) 2006 Itronix Inc. @@ -67,7 +67,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: ubt.c,v 1.32 2008/05/24 16:40:58 cube Exp $"); +__KERNEL_RCSID(0, "$NetBSD: ubt.c,v 1.33 2008/07/16 08:43:01 tonnerre Exp $"); #include <sys/param.h> #include <sys/device.h> @@ -305,7 +305,6 @@ static void ubt_abortdealloc(struct ubt_softc *); */ static const struct usb_devno ubt_ignore[] = { { USB_VENDOR_BROADCOM, USB_PRODUCT_BROADCOM_BCM2033NF }, - { 0, 0 } /* end of list */ }; USB_MATCH(ubt) |
