diff options
author | Felix Kronlage <fkr@cvs.openbsd.org> | 2008-12-11 10:46:34 +0000 |
---|---|---|
committer | Felix Kronlage <fkr@cvs.openbsd.org> | 2008-12-11 10:46:34 +0000 |
commit | d66803655228176cc77da798ce4fcdc9969fd389 (patch) | |
tree | 1c71f743b20b68d2e95a5cb523c295abb5d82afe | |
parent | ae26572d20aedfb89908420f797f669d0eee769d (diff) |
hook Qualcomm AC8700 modem into ubsa(4), from freebsd
discussed with yuo@ and deraadt@
-rw-r--r-- | sys/dev/usb/ubsa.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/usb/ubsa.c b/sys/dev/usb/ubsa.c index 04c77ab2a68..cb1fbab2651 100644 --- a/sys/dev/usb/ubsa.c +++ b/sys/dev/usb/ubsa.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ubsa.c,v 1.42 2008/12/04 00:23:00 fkr Exp $ */ +/* $OpenBSD: ubsa.c,v 1.43 2008/12/11 10:46:33 fkr Exp $ */ /* $NetBSD: ubsa.c,v 1.5 2002/11/25 00:51:33 fvdl Exp $ */ /*- * Copyright (c) 2002, Alexander Kabaev <kan.FreeBSD.org>. @@ -221,6 +221,8 @@ const struct usb_devno ubsa_devs[] = { { USB_VENDOR_PERACOM, USB_PRODUCT_PERACOM_SERIAL1 }, /* Qualcomm Inc. ZTE CMDMA MSM modem */ { USB_VENDOR_QUALCOMM3, USB_PRODUCT_QUALCOMM3_CDMA_MSM }, + /* Qualcomm Inc. AC8700 */ + { USB_VENDOR_QUALCOMM3, USB_PRODUCT_QUALCOMM3_AC8700 }, }; #define ubsa_lookup(v, p) usb_lookup(ubsa_devs, v, p) |