Skip to content

Commit

Permalink
fastboot: Add Alcatel's USB vendor id
Browse files Browse the repository at this point in the history
Change-Id: Ic4f127c8dcd5db0c039491128862b791197f5c84
  • Loading branch information
C457 committed Sep 22, 2016
1 parent b58cc75 commit cc607cb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion fastboot/fastboot.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,8 @@ int match_fastboot_with_serial(usb_ifc_info *info, const char *local_serial)
(info->dev_vendor != 0x2b4c) && // Zuk
(info->dev_vendor != 0x2a96) && // MMX
(info->dev_vendor != 0x19d2) && // ZTE
(info->dev_vendor != 0x2c3f)) // Nextbit
(info->dev_vendor != 0x2c3f) && // Nextbit
(info->dev_vendor != 0x1bbb)) // Alcatel
return -1;
if(info->ifc_class != 0xff) return -1;
if(info->ifc_subclass != 0x42) return -1;
Expand Down

0 comments on commit cc607cb

Please sign in to comment.