Skip to content
Snippets Groups Projects
Commit 79aedbee authored by Android (Google) Code Review's avatar Android (Google) Code Review
Browse files

Merge change 26423 into eclair

* changes:
  Add support for Acer devices
parents b92174db 7953b89e
Branches
Tags
No related merge requests found
...@@ -47,6 +47,8 @@ ...@@ -47,6 +47,8 @@
#define VENDOR_ID_LGE 0x1004 #define VENDOR_ID_LGE 0x1004
// Huawei's USB Vendor ID // Huawei's USB Vendor ID
#define VENDOR_ID_HUAWEI 0x12D1 #define VENDOR_ID_HUAWEI 0x12D1
// Acer's USB Vendor ID
#define VENDOR_ID_ACER 0x0502
/** built-in vendor list */ /** built-in vendor list */
int builtInVendorIds[] = { int builtInVendorIds[] = {
...@@ -56,6 +58,7 @@ int builtInVendorIds[] = { ...@@ -56,6 +58,7 @@ int builtInVendorIds[] = {
VENDOR_ID_MOTOROLA, VENDOR_ID_MOTOROLA,
VENDOR_ID_LGE, VENDOR_ID_LGE,
VENDOR_ID_HUAWEI, VENDOR_ID_HUAWEI,
VENDOR_ID_ACER,
}; };
#define BUILT_IN_VENDOR_COUNT (sizeof(builtInVendorIds)/sizeof(builtInVendorIds[0])) #define BUILT_IN_VENDOR_COUNT (sizeof(builtInVendorIds)/sizeof(builtInVendorIds[0]))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment