This is an automated email from Gerrit. Khem Raj ([email protected]) just uploaded a new patch set to Gerrit, which you can find at http://openocd.zylin.com/4540
-- gerrit commit 4b4f43238834c767b9cc7fbb137e9b3d167d674d Author: Khem Raj <[email protected]> Date: Thu May 31 21:06:46 2018 -0700 Fix libusb-1.0.22 deprecated libusb_set_debug with libusb_set_option libusb_set_debug is deprecated in libusb >= 1.0.22 therefore replace with equivalent libusb_set_option() API see libusb commit for more details https://github.com/libusb/libusb/commit/539f22e2fd916558d11ab9a66f10f461c5593168 Change-Id: Ic0287a1bc0ccc90afe8e4c688085f0b25a7fb004 Signed-off-by: Khem Raj <[email protected]> diff --git a/src/jtag/drivers/xds110.c b/src/jtag/drivers/xds110.c index 90b6990..9bfe02e 100644 --- a/src/jtag/drivers/xds110.c +++ b/src/jtag/drivers/xds110.c @@ -367,8 +367,11 @@ static bool usb_connect(void) /* Set libusb to auto detach kernel and disable debug messages */ (void)libusb_set_auto_detach_kernel_driver(dev, 1); +#if LIBUSB_API_VERSION >= 0x01000106 + libusb_set_option(ctx, LIBUSB_OPTION_LOG_LEVEL, LIBUSB_LOG_LEVEL_NONE); +#else libusb_set_debug(ctx, LIBUSB_LOG_LEVEL_NONE); - +#endif /* Claim the debug interface on the XDS110 */ result = libusb_claim_interface(dev, INTERFACE_DEBUG); } else { -- ------------------------------------------------------------------------------ Check out the vibrant tech community on one of the world's most engaging tech sites, Slashdot.org! http://sdm.link/slashdot _______________________________________________ OpenOCD-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/openocd-devel
