diff options
author | David Gwynne <dlg@cvs.openbsd.org> | 2006-03-24 13:50:15 +0000 |
---|---|---|
committer | David Gwynne <dlg@cvs.openbsd.org> | 2006-03-24 13:50:15 +0000 |
commit | e6c21a532a280c5efce2d2695672583f5f2bcb97 (patch) | |
tree | 7f88772e96c6f0b9edee79b0318d698dd1bcf23d /sys/dev | |
parent | 41913ef29fbfeb6b3ba30ac53350ad9ca1edbb28 (diff) |
i wish all new hardware was this easy to support. acer labs usb2 data
link cable seems happy. thanks to sevan janiyan for the gear.
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/usb/if_cdce.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/usb/if_cdce.c b/sys/dev/usb/if_cdce.c index 2a101791580..faeccc80e9e 100644 --- a/sys/dev/usb/if_cdce.c +++ b/sys/dev/usb/if_cdce.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_cdce.c,v 1.14 2006/02/20 20:12:13 damien Exp $ */ +/* $OpenBSD: if_cdce.c,v 1.15 2006/03/24 13:50:14 dlg Exp $ */ /* * Copyright (c) 1997, 1998, 1999, 2000-2003 Bill Paul <wpaul@windriver.com> @@ -90,6 +90,7 @@ Static void cdce_stop(struct cdce_softc *); static uint32_t cdce_crc32(const void *, size_t); Static const struct cdce_type cdce_devs[] = { + {{ USB_VENDOR_ACERLABS, USB_PRODUCT_ACERLABS_M5632 }, CDCE_NO_UNION }, {{ USB_VENDOR_PROLIFIC, USB_PRODUCT_PROLIFIC_PL2501 }, CDCE_NO_UNION }, {{ USB_VENDOR_SHARP, USB_PRODUCT_SHARP_SL5500 }, CDCE_ZAURUS }, {{ USB_VENDOR_SHARP, USB_PRODUCT_SHARP_A300 }, CDCE_ZAURUS | CDCE_NO_UNION }, |