diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2014-03-16 02:46:58 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2014-03-16 02:46:58 +0000 |
commit | 2f8f0ed13c02f87ad2999aa20bd5b4429330e93e (patch) | |
tree | 44aa3622914c5aff7676df2c82cda2cd0aec8d79 /sys/dev | |
parent | 4278cd6f79a682a65388dc1fb3322fea2e20571d (diff) |
Add Sitecom LN-032 from/tested by Fabian Raetz.
While here add a few other AX88179 devices as well.
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/usb/if_axen.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/sys/dev/usb/if_axen.c b/sys/dev/usb/if_axen.c index 72f660b072c..f2433f3f129 100644 --- a/sys/dev/usb/if_axen.c +++ b/sys/dev/usb/if_axen.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_axen.c,v 1.5 2013/11/20 08:53:27 mpi Exp $ */ +/* $OpenBSD: if_axen.c,v 1.6 2014/03/16 02:46:57 jsg Exp $ */ /* * Copyright (c) 2013 Yojiro UO <yuo@openbsd.org> @@ -79,7 +79,11 @@ const struct axen_type axen_devs[] = { #if 0 /* not tested */ { { USB_VENDOR_ASIX, USB_PRODUCT_ASIX_AX88178A}, AX178A }, #endif - { { USB_VENDOR_ASIX, USB_PRODUCT_ASIX_AX88179}, AX179 } + { { USB_VENDOR_ASIX, USB_PRODUCT_ASIX_AX88179}, AX179 }, + { { USB_VENDOR_DLINK, USB_PRODUCT_DLINK_DUB1312}, AX179 }, + { { USB_VENDOR_LENOVO, USB_PRODUCT_LENOVO_AX88179}, AX179 }, + { { USB_VENDOR_SAMSUNG2, USB_PRODUCT_SAMSUNG2_AX88179}, AX179 }, + { { USB_VENDOR_SITECOMEU, USB_PRODUCT_SITECOMEU_LN032}, AX179 } }; #define axen_lookup(v, p) ((struct axen_type *)usb_lookup(axen_devs, v, p)) |