aboutsummaryrefslogtreecommitdiffstats
path: root/fastboot
diff options
context:
space:
mode:
authorErik Gilling <konkers@android.com>2010-01-20 17:40:05 -0800
committerErik Gilling <konkers@android.com>2010-01-20 17:40:30 -0800
commit37e9e904360d6a8757c958dacaab1343eacb7fa8 (patch)
tree59039aaa671b3fb40d95c5fe3c135094992a544d /fastboot
parenteb4ae9c6c353e1bb7a45ad971638387521e0c713 (diff)
downloadsystem_core-37e9e904360d6a8757c958dacaab1343eacb7fa8.zip
system_core-37e9e904360d6a8757c958dacaab1343eacb7fa8.tar.gz
system_core-37e9e904360d6a8757c958dacaab1343eacb7fa8.tar.bz2
fastboot: add Nvidia vendor id to fastboot
Signed-off-by: Erik Gilling <konkers@android.com>
Diffstat (limited to 'fastboot')
-rw-r--r--fastboot/fastboot.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/fastboot/fastboot.c b/fastboot/fastboot.c
index ca0c9ce..2a96679 100644
--- a/fastboot/fastboot.c
+++ b/fastboot/fastboot.c
@@ -151,6 +151,7 @@ int match_fastboot(usb_ifc_info *info)
(info->dev_vendor != 0x0451) &&
(info->dev_vendor != 0x0502) &&
(info->dev_vendor != 0x22b8) && // Motorola
+ (info->dev_vendor != 0x0955) && // Nvidia
(info->dev_vendor != 0x0bb4)) // HTC
return -1;
if(info->ifc_class != 0xff) return -1;