Merge "Added USB vendor id of Sharp, based on Sharp's request. Sharp's vendor id: 0x04dd"

This commit is contained in:
Satoshi Kataoka 2010-02-15 17:00:09 -08:00 committed by Android (Google) Code Review
commit d77caaa94e
1 changed files with 3 additions and 1 deletions

View File

@ -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]))