diff options
author | Martin Pieuchot <mpi@cvs.openbsd.org> | 2018-08-22 15:32:50 +0000 |
---|---|---|
committer | Martin Pieuchot <mpi@cvs.openbsd.org> | 2018-08-22 15:32:50 +0000 |
commit | beb8710e2f8f376feeadec5cb86847c8ea0241ba (patch) | |
tree | e583af560dcdcaecbb3a3cc9e03df64996b906e4 /sys/dev | |
parent | fc03712a6df2a898f9200664e23e19837da2d8c0 (diff) |
Work well with the Dynastream ANTUSB-m, from Jan Klemkow.
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/usb/uscom.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/dev/usb/uscom.c b/sys/dev/usb/uscom.c index 69d51578b61..54dab867764 100644 --- a/sys/dev/usb/uscom.c +++ b/sys/dev/usb/uscom.c @@ -1,4 +1,4 @@ -/* $OpenBSD: uscom.c,v 1.5 2016/09/02 09:14:59 mpi Exp $ */ +/* $OpenBSD: uscom.c,v 1.6 2018/08/22 15:32:49 mpi Exp $ */ /* * Copyright (c) 2006 Jonathan Gray <jsg@openbsd.org> @@ -52,7 +52,8 @@ struct ucom_methods uscom_methods = { }; static const struct usb_devno uscom_devs[] = { - { USB_VENDOR_HP, USB_PRODUCT_HP_HPX9GP } + { USB_VENDOR_HP, USB_PRODUCT_HP_HPX9GP }, + { USB_VENDOR_DYNASTREAM, USB_PRODUCT_DYNASTREAM_ANTUSBM } }; int uscom_match(struct device *, void *, void *); |