Added USB vendor id of Sharp, based on Sharp's request.

Sharp's vendor id: 0x04dd
This commit is contained in:
Takeshi Kishimoto 2010-02-09 18:10:36 +08:00 committed by Mike Lockwood
parent 05f202a94b
commit 17273091e9
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]))