diff options
author | Takeshi Kishimoto <kishimoto@google.com> | 2010-02-09 18:10:36 +0800 |
---|---|---|
committer | Takeshi Kishimoto <kishimoto@google.com> | 2010-02-09 18:10:36 +0800 |
commit | 123331adeaed6c54e4869b0fd7001c5f1b19bdc4 (patch) | |
tree | 9eff70c2374f72fa0dcb33a25af2ca673ec7ccc1 /adb | |
parent | 2dcf1fb9ff3f7a64c0f914c524db146dd8683b6a (diff) | |
download | core-123331adeaed6c54e4869b0fd7001c5f1b19bdc4.tar.gz core-123331adeaed6c54e4869b0fd7001c5f1b19bdc4.tar.bz2 core-123331adeaed6c54e4869b0fd7001c5f1b19bdc4.zip |
Added USB vendor id of Sharp, based on Sharp's request.
Sharp's vendor id: 0x04dd
Diffstat (limited to 'adb')
-rw-r--r-- | adb/usb_vendors.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/adb/usb_vendors.c b/adb/usb_vendors.c index 73bf41843..866e3af1f 100644 --- a/adb/usb_vendors.c +++ b/adb/usb_vendors.c @@ -59,7 +59,8 @@ #define VENDOR_ID_NVIDIA 0x0955 // Garmin-Asus's USB Vendor ID #define VENDOR_ID_GARMIN_ASUS 0x091E - +// Sharp's USB Vendor ID +#define VENDOR_ID_SHARP 0x04dd /** built-in vendor list */ int builtInVendorIds[] = { @@ -75,6 +76,7 @@ int builtInVendorIds[] = { VENDOR_ID_DELL, VENDOR_ID_NVIDIA, VENDOR_ID_GARMIN_ASUS, + VENDOR_ID_SHARP, }; #define BUILT_IN_VENDOR_COUNT (sizeof(builtInVendorIds)/sizeof(builtInVendorIds[0])) |