Merge "adb: add Nvidia's vendor id to adb"
This commit is contained in:
commit
25eab084c5
|
@ -55,6 +55,8 @@
|
|||
#define VENDOR_ID_FOXCONN 0x0489
|
||||
// Dell's USB Vendor ID
|
||||
#define VENDOR_ID_DELL 0x413c
|
||||
// Nvidia's USB Vendor ID
|
||||
#define VENDOR_ID_NVIDIA 0x0955
|
||||
|
||||
|
||||
/** built-in vendor list */
|
||||
|
@ -69,6 +71,7 @@ int builtInVendorIds[] = {
|
|||
VENDOR_ID_SONY_ERICSSON,
|
||||
VENDOR_ID_FOXCONN,
|
||||
VENDOR_ID_DELL,
|
||||
VENDOR_ID_NVIDIA,
|
||||
};
|
||||
|
||||
#define BUILT_IN_VENDOR_COUNT (sizeof(builtInVendorIds)/sizeof(builtInVendorIds[0]))
|
||||
|
|
Loading…
Reference in New Issue