summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorPeter Valchev <pvalchev@cvs.openbsd.org>2004-11-28 18:59:28 +0000
committerPeter Valchev <pvalchev@cvs.openbsd.org>2004-11-28 18:59:28 +0000
commitb07a76d3be3163607635280456c1b1b65d0f81a1 (patch)
tree2d2bb8046db501e3809b3f69bf6c4b038ab3f615 /sys
parent1c236c8721138f847c93f28f53ea2edfa687e4a1 (diff)
garmin palm device; from openbsd@st.thrush.com
Diffstat (limited to 'sys')
-rw-r--r--sys/dev/usb/usbdevs6
-rw-r--r--sys/dev/usb/uvisor.c3
2 files changed, 7 insertions, 2 deletions
diff --git a/sys/dev/usb/usbdevs b/sys/dev/usb/usbdevs
index 8b1b70689d9..29a8e0fe9fc 100644
--- a/sys/dev/usb/usbdevs
+++ b/sys/dev/usb/usbdevs
@@ -1,4 +1,4 @@
-$OpenBSD: usbdevs,v 1.124 2004/11/19 23:17:03 dlg Exp $
+$OpenBSD: usbdevs,v 1.125 2004/11/28 18:59:27 pvalchev Exp $
/* $NetBSD: usbdevs,v 1.322 2003/05/10 17:47:14 hamajima Exp $ */
/*
@@ -314,6 +314,7 @@ vendor AUDIOTECHNICA 0x0909 Audio-Technica
vendor TRUMPION 0x090a Trumpion Microelectronics
vendor ALATION 0x0910 Alation Systems
vendor CONCORDCAMERA 0x0919 Concord Camera
+vendor GARMIN 0x091e Garmin International
vendor GOHUBS 0x0921 GoHubs
vendor BIOMETRIC 0x0929 American Biometric Company
vendor INTREPIDCS 0x093c Intrepid
@@ -820,6 +821,9 @@ product FUJIPHOTO MASS0100 0x0100 Mass Storage
/* Fujitsu protducts */
product FUJITSU AH_F401U 0x105b AH-F401U Air H device
+/* Garmin International products */
+product GARMIN IQUE3600 0x0004 Ique 3600
+
/* Genesys Logic products */
product GENESYS GENELINK 0x05e3 GeneLink Host-Host Bridge
product GENESYS GL650 0x0604 GL650 Hub
diff --git a/sys/dev/usb/uvisor.c b/sys/dev/usb/uvisor.c
index cfbb9be6d54..9ead47b224d 100644
--- a/sys/dev/usb/uvisor.c
+++ b/sys/dev/usb/uvisor.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: uvisor.c,v 1.18 2004/05/05 15:16:27 jcs Exp $ */
+/* $OpenBSD: uvisor.c,v 1.19 2004/11/28 18:59:27 pvalchev Exp $ */
/* $NetBSD: uvisor.c,v 1.21 2003/08/03 21:59:26 nathanw Exp $ */
/*
@@ -188,6 +188,7 @@ static const struct uvisor_type uvisor_devs[] = {
{{ USB_VENDOR_SONY, USB_PRODUCT_SONY_CLIE_NX60 }, PALM4 },
{{ USB_VENDOR_SONY, USB_PRODUCT_SONY_CLIE_TJ25 }, PALM4 },
/* {{ USB_VENDOR_SONY, USB_PRODUCT_SONY_CLIE_25 }, PALM4 },*/
+ {{ USB_VENDOR_GARMIN, USB_PRODUCT_GARMIN_IQUE3600 }, PALM4 },
};
#define uvisor_lookup(v, p) ((struct uvisor_type *)usb_lookup(uvisor_devs, v, p))