summaryrefslogtreecommitdiffstats
path: root/src/usb.c
diff options
context:
space:
mode:
authorGravatar Rick Mark2019-12-16 17:59:45 +0100
committerGravatar Nikias Bassen2019-12-16 17:59:45 +0100
commitec5ff91cfabd30637f8af8f5c79baf4d7818ce57 (patch)
tree71932eafb3493fb38a1239b281dc9fc41aa80865 /src/usb.c
parent9af2b12552693a47601347e1eafc1e94132d727e (diff)
downloadusbmuxd-ec5ff91cfabd30637f8af8f5c79baf4d7818ce57.tar.gz
usbmuxd-ec5ff91cfabd30637f8af8f5c79baf4d7818ce57.tar.bz2
Support T2 chip in restore mode
Diffstat (limited to 'src/usb.c')
-rw-r--r--src/usb.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/usb.c b/src/usb.c
index 364930c..9baf933 100644
--- a/src/usb.c
+++ b/src/usb.c
@@ -380,8 +380,9 @@ static int usb_device_add(libusb_device* dev)
380 } 380 }
381 if(devdesc.idVendor != VID_APPLE) 381 if(devdesc.idVendor != VID_APPLE)
382 return -1; 382 return -1;
383 if((devdesc.idProduct < PID_RANGE_LOW) || 383 if((devdesc.idProduct != PID_APPLE_T2_COPROCESSOR) &&
384 (devdesc.idProduct > PID_RANGE_MAX)) 384 ((devdesc.idProduct < PID_RANGE_LOW) ||
385 (devdesc.idProduct > PID_RANGE_MAX)))
385 return -1; 386 return -1;
386 libusb_device_handle *handle; 387 libusb_device_handle *handle;
387 usbmuxd_log(LL_INFO, "Found new device with v/p %04x:%04x at %d-%d", devdesc.idVendor, devdesc.idProduct, bus, address); 388 usbmuxd_log(LL_INFO, "Found new device with v/p %04x:%04x at %d-%d", devdesc.idVendor, devdesc.idProduct, bus, address);