diff options
author | Jon Sawyer <jon@cunninglogic.com> | 2012-04-15 12:24:32 -0700 |
---|---|---|
committer | Jon Sawyer <jon@cunninglogic.com> | 2012-04-15 12:39:59 -0700 |
commit | 775ab9c99eb513efecb6390b58bbcec80555eef8 (patch) | |
tree | 8d3532deafc61b29557bd1e3ed5a34af4c66d2c7 /adb | |
parent | 4b91e3328c79383bcebed982ce536046ea316456 (diff) | |
download | core-775ab9c99eb513efecb6390b58bbcec80555eef8.tar.gz core-775ab9c99eb513efecb6390b58bbcec80555eef8.tar.bz2 core-775ab9c99eb513efecb6390b58bbcec80555eef8.zip |
Kindle Fire USB ID
Adds Lab126's USB id to the known USB Devices
Change-Id: I3cd5d90bba68123d5d3d2d67e1ab7d60137eb388
Signed-off-by: Jon Sawyer <jon@cunninglogic.com>
Diffstat (limited to 'adb')
-rw-r--r-- | adb/usb_vendors.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/adb/usb_vendors.c b/adb/usb_vendors.c index 5d8a831c4..a1c352335 100644 --- a/adb/usb_vendors.c +++ b/adb/usb_vendors.c @@ -125,6 +125,8 @@ #define VENDOR_ID_INQ_MOBILE 0x2314 // Sony's USB Vendor ID #define VENDOR_ID_SONY 0x054C +// Lab126's USB Vendor ID +#define VENDOR_ID_LAB126 0x1949 /** built-in vendor list */ int builtInVendorIds[] = { @@ -173,6 +175,7 @@ int builtInVendorIds[] = { VENDOR_ID_QUANTA, VENDOR_ID_INQ_MOBILE, VENDOR_ID_SONY, + VENDOR_ID_LAB126, }; #define BUILT_IN_VENDOR_COUNT (sizeof(builtInVendorIds)/sizeof(builtInVendorIds[0])) |