From 6c48349deec6d7b6e654067416790fe16c69c28e Mon Sep 17 00:00:00 2001 From: Mohamad Ayyash Date: Tue, 16 Feb 2016 20:12:34 -0800 Subject: [PATCH] Add CASIO to approved vendor IDs BUG: 27021418 Change-Id: I083447d3555891db4fced2171a0a747882c4435a Signed-off-by: Mohamad Ayyash --- fastboot/fastboot.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/fastboot/fastboot.cpp b/fastboot/fastboot.cpp index de4c0ea41..dec690c78 100644 --- a/fastboot/fastboot.cpp +++ b/fastboot/fastboot.cpp @@ -203,7 +203,8 @@ int match_fastboot_with_serial(usb_ifc_info *info, const char *local_serial) (info->dev_vendor != 0x413c) && // DELL (info->dev_vendor != 0x2314) && // INQ Mobile (info->dev_vendor != 0x0b05) && // Asus - (info->dev_vendor != 0x0bb4)) // HTC + (info->dev_vendor != 0x0bb4) && // HTC + (info->dev_vendor != 0x07cf)) // CASIO return -1; if(info->ifc_class != 0xff) return -1; if(info->ifc_subclass != 0x42) return -1;