diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2005-02-12 10:21:06 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2005-02-12 10:21:06 +0000 |
commit | b54281255af4dd53234adc42eea75912558ce476 (patch) | |
tree | c0824832a25ac86148aba1d0c17f7b51a1f6d273 /sys | |
parent | c4d61d762fe6ffd1393e14e88d870864d7f68c79 (diff) |
Additional axe devices found in Linux driver.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/usb/if_axe.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/dev/usb/if_axe.c b/sys/dev/usb/if_axe.c index 59888aa212e..1fd1662a3df 100644 --- a/sys/dev/usb/if_axe.c +++ b/sys/dev/usb/if_axe.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_axe.c,v 1.22 2005/01/03 22:45:52 brad Exp $ */ +/* $OpenBSD: if_axe.c,v 1.23 2005/02/12 10:21:04 jsg Exp $ */ /* * Copyright (c) 1997, 1998, 1999, 2000-2003 @@ -156,8 +156,12 @@ int axedebug = 0; * Various supported device vendors/products. */ Static const struct axe_type axe_devs[] = { + { { USB_VENDOR_ABOCOM, USB_PRODUCT_ABOCOM_UF200}, 0 }, + { { USB_VENDOR_ACERCM, USB_PRODUCT_ACERCM_EP1427X2}, 0 }, { { USB_VENDOR_ASIX, USB_PRODUCT_ASIX_AX88172}, 0 }, + { { USB_VENDOR_ATEN, USB_PRODUCT_ATEN_UC210T}, 0 }, { { USB_VENDOR_BILLIONTON, USB_PRODUCT_BILLIONTON_SNAPPORT}, 0 }, + { { USB_VENDOR_BILLIONTON, USB_PRODUCT_BILLIONTON_USB2AR}, 0}, { { USB_VENDOR_COREGA, USB_PRODUCT_COREGA_FETHER_USB2_TX }, 0}, { { USB_VENDOR_DLINK, USB_PRODUCT_DLINK_DUBE100}, 0 }, { { USB_VENDOR_LINKSYS2, USB_PRODUCT_LINKSYS2_USB200M}, 0 }, |