diff options
author | Martin Pieuchot <mpi@cvs.openbsd.org> | 2015-07-15 13:27:42 +0000 |
---|---|---|
committer | Martin Pieuchot <mpi@cvs.openbsd.org> | 2015-07-15 13:27:42 +0000 |
commit | 1ee6d2163e1dcb9dbb506785b746e1944c1a19fa (patch) | |
tree | b9eeaebc25e1864be6280fd2b726c7245b20f3b4 /sys/dev | |
parent | 3466e3bc62bb3aa6c95136bc0a0a4a9ee60316bb (diff) |
Match another Netgear WG111T. This one shares the Non-Firmware ID of a
another device.
ok stsp@
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/usb/if_uath.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/sys/dev/usb/if_uath.c b/sys/dev/usb/if_uath.c index 106f09d0f96..9a4f54d978c 100644 --- a/sys/dev/usb/if_uath.c +++ b/sys/dev/usb/if_uath.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_uath.c,v 1.68 2015/07/15 04:01:26 stsp Exp $ */ +/* $OpenBSD: if_uath.c,v 1.69 2015/07/15 13:27:41 mpi Exp $ */ /*- * Copyright (c) 2006 @@ -116,7 +116,10 @@ static const struct uath_type { UATH_DEV_UG(UMEDIA, TEW444UBEU), UATH_DEV_UG(WISTRONNEWEB, AR5523_1), UATH_DEV_UX(WISTRONNEWEB, AR5523_2), - UATH_DEV_UG(ZCOM, AR5523) + UATH_DEV_UG(ZCOM, AR5523), + + /* Devices that share one of the IDs above. */ + { { USB_VENDOR_NETGEAR3, USB_PRODUCT_NETGEAR3_WG111T_1 }, 0 } \ }; #define uath_lookup(v, p) \ ((const struct uath_type *)usb_lookup(uath_devs, v, p)) |