diff options
author | joshua stein <jcs@cvs.openbsd.org> | 2004-05-05 15:16:28 +0000 |
---|---|---|
committer | joshua stein <jcs@cvs.openbsd.org> | 2004-05-05 15:16:28 +0000 |
commit | c35808e80f3198d14af27840f4857c3fc03460de (patch) | |
tree | c373ae632040b8911cfc55342869dabe1bf82677 | |
parent | f4232d3f7d06a2f6c53f08e4115a1e880d4f1858 (diff) |
make my treo 600 attach as a uvisor instead of ugen, from netbsd
ok nate@
-rw-r--r-- | sys/dev/usb/usbdevs | 3 | ||||
-rw-r--r-- | sys/dev/usb/uvisor.c | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/sys/dev/usb/usbdevs b/sys/dev/usb/usbdevs index ff0396f8abe..829c978b344 100644 --- a/sys/dev/usb/usbdevs +++ b/sys/dev/usb/usbdevs @@ -1,4 +1,4 @@ -$OpenBSD: usbdevs,v 1.81 2004/04/25 18:32:11 deraadt Exp $ +$OpenBSD: usbdevs,v 1.82 2004/05/05 15:16:27 jcs Exp $ /* $NetBSD: usbdevs,v 1.322 2003/05/10 17:47:14 hamajima Exp $ */ /* @@ -760,6 +760,7 @@ product HAGIWARA FG 0x0005 FlashGate /* Handspring, Inc. */ product HANDSPRING VISOR 0x0100 Handspring Visor product HANDSPRING TREO 0x0200 Handspring Treo +product HANDSPRING TREO600 0x0300 Handspring Treo 600 /* Hauppauge Computer Works */ product HAUPPAUGE WINTV_USB_FM 0x4d12 WinTV USB FM diff --git a/sys/dev/usb/uvisor.c b/sys/dev/usb/uvisor.c index e83528fc2d7..cfbb9be6d54 100644 --- a/sys/dev/usb/uvisor.c +++ b/sys/dev/usb/uvisor.c @@ -1,4 +1,4 @@ -/* $OpenBSD: uvisor.c,v 1.17 2004/04/10 08:04:59 grange Exp $ */ +/* $OpenBSD: uvisor.c,v 1.18 2004/05/05 15:16:27 jcs Exp $ */ /* $NetBSD: uvisor.c,v 1.21 2003/08/03 21:59:26 nathanw Exp $ */ /* @@ -172,6 +172,7 @@ struct uvisor_type { static const struct uvisor_type uvisor_devs[] = { {{ USB_VENDOR_HANDSPRING, USB_PRODUCT_HANDSPRING_VISOR }, VISOR }, {{ USB_VENDOR_HANDSPRING, USB_PRODUCT_HANDSPRING_TREO }, PALM4 }, + {{ USB_VENDOR_HANDSPRING, USB_PRODUCT_HANDSPRING_TREO600 }, VISOR }, {{ USB_VENDOR_PALM, USB_PRODUCT_PALM_M500 }, PALM4 }, {{ USB_VENDOR_PALM, USB_PRODUCT_PALM_M505 }, PALM4 }, {{ USB_VENDOR_PALM, USB_PRODUCT_PALM_M515 }, PALM4 }, |