diff options
author | imp <imp@FreeBSD.org> | 2007-06-22 06:02:19 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2007-06-22 06:02:19 +0000 |
commit | da3cb47a62e810c3b8c2633e20cf76eef04c30d2 (patch) | |
tree | 93044deb4104ae0fa6ecb689b1a354f3d14d5762 /sys | |
parent | cb04c4ce6c380b2a49d539fcc3d8bf057d260f2d (diff) | |
download | FreeBSD-src-da3cb47a62e810c3b8c2633e20cf76eef04c30d2.zip FreeBSD-src-da3cb47a62e810c3b8c2633e20cf76eef04c30d2.tar.gz |
Add support for Garmin iQue 3600
Submitted by: Lapo Luchini
PR: 113324
Approved by: re (kensmith, blanket)
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/usb/usbdevs | 34 | ||||
-rw-r--r-- | sys/dev/usb/uvisor.c | 1 |
2 files changed, 20 insertions, 15 deletions
diff --git a/sys/dev/usb/usbdevs b/sys/dev/usb/usbdevs index 5ed8b48..b9195bc 100644 --- a/sys/dev/usb/usbdevs +++ b/sys/dev/usb/usbdevs @@ -426,6 +426,7 @@ vendor AUDIOTECHNICA 0x0909 Audio-Technica vendor TRUMPION 0x090a Trumpion vendor ALATION 0x0910 Alation vendor CONCORDCAMERA 0x0919 Concord Camera +vendor GARMIN 0x091e Garmin vendor GOHUBS 0x0921 GoHubs vendor XEROX 0x0924 Xerox vendor BIOMETRIC 0x0929 American Biometric @@ -1002,21 +1003,6 @@ product EXTENDED XTNDACCESS 0x0100 XTNDAccess IrDA /* Fossil, Inc products */ product FOSSIL WRISTPDA 0x0002 Wrist PDA -/* GoHubs products */ -product GOHUBS GOCOM232 0x1001 GoCOM232 Serial - -/* Good Way Technology products */ -product GOODWAY RT2573 0xc019 RT2573 - -/* Gravis products */ -product GRAVIS GAMEPADPRO 0x4001 GamePad Pro - -/* GREENHOUSE products */ -product GREENHOUSE KANA21 0x0001 CF-writer with MP3 - -/* Griffin Technology */ -product GRIFFIN IMATE 0x0405 iMate, ADB adapter - /* Freecom products */ product FREECOM DVD 0xfc01 DVD drive @@ -1051,6 +1037,9 @@ product FUJIPHOTO MASS0100 0x0100 Mass Storage /* Fujitsu protducts */ product FUJITSU AH_F401U 0x105b AH-F401U Air H device +/* Garmin products */ +product GARMIN IQUE_3600 0x0004 iQue 3600 + /* General Instruments (Motorola) products */ product GENERALINSTMNTS SB5100 0x5100 SURFboard SB5100 Cable modem @@ -1087,6 +1076,21 @@ product GLOBALSUN AR5523_2_NF 0x7812 AR5523 (no firmware) /* G.Mate, Inc products */ product GMATE YP3X00 0x1001 YP3X00 PDA +/* GoHubs products */ +product GOHUBS GOCOM232 0x1001 GoCOM232 Serial + +/* Good Way Technology products */ +product GOODWAY RT2573 0xc019 RT2573 + +/* Gravis products */ +product GRAVIS GAMEPADPRO 0x4001 GamePad Pro + +/* GREENHOUSE products */ +product GREENHOUSE KANA21 0x0001 CF-writer with MP3 + +/* Griffin Technology */ +product GRIFFIN IMATE 0x0405 iMate, ADB adapter + /* Guillemot Corporation */ product GUILLEMOT DALEADER 0xa300 DA Leader product GUILLEMOT HWGUSB254 0xe000 HWGUSB2-54 WLAN diff --git a/sys/dev/usb/uvisor.c b/sys/dev/usb/uvisor.c index aa2814e..c38d0fd 100644 --- a/sys/dev/usb/uvisor.c +++ b/sys/dev/usb/uvisor.c @@ -220,6 +220,7 @@ struct uvisor_type { }; static const struct uvisor_type uvisor_devs[] = { {{ USB_VENDOR_ACEECA, USB_PRODUCT_ACEECA_MEZ1000 }, PALM4 }, + {{ USB_VENDOR_GARMIN, USB_PRODUCT_GARMIN_IQUE_3600 }, PALM4 }, {{ USB_VENDOR_FOSSIL, USB_PRODUCT_FOSSIL_WRISTPDA }, PALM4 }, {{ USB_VENDOR_HANDSPRING, USB_PRODUCT_HANDSPRING_VISOR }, VISOR }, {{ USB_VENDOR_HANDSPRING, USB_PRODUCT_HANDSPRING_TREO }, PALM4 }, |