diff options
author | bmah <bmah@FreeBSD.org> | 2005-12-04 07:34:19 +0000 |
---|---|---|
committer | bmah <bmah@FreeBSD.org> | 2005-12-04 07:34:19 +0000 |
commit | a2738b94081e8e4759c9303fc018825aedcf4725 (patch) | |
tree | d53504821270b1b5a00bcde98dd6729309377365 | |
parent | 9c83a5df857df6b616a5b24642d21c8c1effeb47 (diff) | |
download | FreeBSD-src-a2738b94081e8e4759c9303fc018825aedcf4725.zip FreeBSD-src-a2738b94081e8e4759c9303fc018825aedcf4725.tar.gz |
Recognize the Sony Clie PEG-TJ37.
Tested on: My PEG-TJ37 and my RELENG_6 workstation
MFC after: 1 week
-rw-r--r-- | sys/dev/usb/usbdevs | 1 | ||||
-rw-r--r-- | sys/dev/usb/uvisor.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/sys/dev/usb/usbdevs b/sys/dev/usb/usbdevs index ec62d48..8e44b8f 100644 --- a/sys/dev/usb/usbdevs +++ b/sys/dev/usb/usbdevs @@ -1460,6 +1460,7 @@ product SONY CLIE_S360 0x0095 Sony Clie s360 product SONY CLIE_41_MS 0x0099 Sony Clie v4.1 Memory Stick slot product SONY CLIE_41 0x009a Sony Clie v4.1 product SONY CLIE_NX60 0x00da Sony Clie nx60 +product SONY CLIE_TJ37 0x0169 Sony Clie tj37 /* Sony Ericsson products */ product SONYERICSSON DCU10 0x0528 USB Cable diff --git a/sys/dev/usb/uvisor.c b/sys/dev/usb/uvisor.c index fe6f05c..8d7290f 100644 --- a/sys/dev/usb/uvisor.c +++ b/sys/dev/usb/uvisor.c @@ -242,6 +242,7 @@ static const struct uvisor_type uvisor_devs[] = { {{ USB_VENDOR_SONY, USB_PRODUCT_SONY_CLIE_NX60 }, PALM4 }, {{ USB_VENDOR_SONY, USB_PRODUCT_SONY_CLIE_35 }, PALM35 }, /* {{ USB_VENDOR_SONY, USB_PRODUCT_SONY_CLIE_25 }, PALM4 },*/ + {{ USB_VENDOR_SONY, USB_PRODUCT_SONY_CLIE_TJ37 }, PALM4 }, }; #define uvisor_lookup(v, p) ((const struct uvisor_type *)usb_lookup(uvisor_devs, v, p)) |