Stefan Reinauer has uploaded this change for review. ( https://review.coreboot.org/c/em100/+/47777 )
Change subject: Use LIBUSB_LOG_LEVEL_INFO instead of numeric value ......................................................................
Use LIBUSB_LOG_LEVEL_INFO instead of numeric value
Signed-off-by: Stefan Reinauer stefan.reinauer@coreboot.org Change-Id: I34330aa1b7e099a524e73a6d05b310597b05b3a6 --- M em100.c 1 file changed, 2 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/em100 refs/changes/77/47777/1
diff --git a/em100.c b/em100.c index e72f181..f24fb9c 100644 --- a/em100.c +++ b/em100.c @@ -381,9 +381,9 @@ }
#if LIBUSB_API_VERSION < 0x01000106 - libusb_set_debug(ctx, 3); + libusb_set_debug(ctx, LIBUSB_LOG_LEVEL_INFO); #else - libusb_set_option(ctx, LIBUSB_OPTION_LOG_LEVEL, 3); + libusb_set_option(ctx, LIBUSB_OPTION_LOG_LEVEL, LIBUSB_LOG_LEVEL_INFO); #endif
if ((!bus || !device) && !serial_number) {