diff options
author | gavin <gavin@FreeBSD.org> | 2011-06-22 22:08:55 +0000 |
---|---|---|
committer | gavin <gavin@FreeBSD.org> | 2011-06-22 22:08:55 +0000 |
commit | daed4e9597244449d23c636e25c134076390fd21 (patch) | |
tree | df6fadf1a16ceaeca7308b15971e93b5ed3b24b8 /sys/dev | |
parent | 58522ee4969364dac5ba0a8e8c1e407c7941e617 (diff) | |
download | FreeBSD-src-daed4e9597244449d23c636e25c134076390fd21.zip FreeBSD-src-daed4e9597244449d23c636e25c134076390fd21.tar.gz |
Use USB_VENDOR_OVISLINK define rather than the vendor ID.
PR: usb/158142
Submitted by: Robert Millan <rmh debian.org>
MFC after: 1 week
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/usb/wlan/if_urtw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/usb/wlan/if_urtw.c b/sys/dev/usb/wlan/if_urtw.c index 3de2273..7805c2d 100644 --- a/sys/dev/usb/wlan/if_urtw.c +++ b/sys/dev/usb/wlan/if_urtw.c @@ -115,7 +115,7 @@ static const struct usb_device_id urtw_devs[] = { URTW_DEV_L(REALTEK, RTL8187), URTW_DEV_L(SITECOMEU, WL168V1), URTW_DEV_L(SURECOM, EP9001G2A), - { USB_VPI(0x1b75, 0x8187, URTW_REV_RTL8187L) }, + { USB_VPI(USB_VENDOR_OVISLINK, 0x8187, URTW_REV_RTL8187L) }, { USB_VPI(USB_VENDOR_DICKSMITH, 0x9401, URTW_REV_RTL8187L) }, { USB_VPI(USB_VENDOR_HP, 0xca02, URTW_REV_RTL8187L) }, { USB_VPI(USB_VENDOR_LOGITEC, 0x010c, URTW_REV_RTL8187L) }, |