diff options
author | Volker Moesker <volker.moesker@gigaset.com> | 2013-10-07 14:42:28 +0200 |
---|---|---|
committer | Colin Cross <ccross@android.com> | 2014-01-06 12:16:29 -0800 |
commit | 319d8c1d1f5e11e971125bb244e9afca25bce592 (patch) | |
tree | 0513df43390b044477a7a871558bf98858cd9b7f | |
parent | 293717c364f325c1b60a28fa5913cec0a99ba03d (diff) | |
download | system_core-319d8c1d1f5e11e971125bb244e9afca25bce592.zip system_core-319d8c1d1f5e11e971125bb244e9afca25bce592.tar.gz system_core-319d8c1d1f5e11e971125bb244e9afca25bce592.tar.bz2 |
added Gigaset's USB vendor ID
Change-Id: Iebb0f352eec4530ee1e972527fc76bbb9dad5cc3
Signed-off-by: Volker Moesker <volker.moesker@gigaset.com>
-rwxr-xr-x | 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 e96cf9e..f4196c7 100755 --- a/adb/usb_vendors.c +++ b/adb/usb_vendors.c @@ -62,6 +62,8 @@ #define VENDOR_ID_GARMIN_ASUS 0x091E // Gigabyte's USB Vendor ID #define VENDOR_ID_GIGABYTE 0x0414 +// Gigaset's USB Vendor ID +#define VENDOR_ID_GIGASET 0x1E85 // Google's USB Vendor ID #define VENDOR_ID_GOOGLE 0x18d1 // Haier's USB Vendor ID @@ -162,7 +164,6 @@ #define VENDOR_ID_ZTE 0x19D2 /* Keep the list above sorted alphabetically by #define name */ - /** built-in vendor list */ /* Keep the list below sorted alphabetically */ int builtInVendorIds[] = { @@ -179,6 +180,7 @@ int builtInVendorIds[] = { VENDOR_ID_FUNAI, VENDOR_ID_GARMIN_ASUS, VENDOR_ID_GIGABYTE, + VENDOR_ID_GIGASET, VENDOR_ID_GOOGLE, VENDOR_ID_HAIER, VENDOR_ID_HARRIS, |