summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPali Rohár <pali.rohar@gmail.com>2016-12-07 11:55:54 +0100
committerPali Rohár <pali.rohar@gmail.com>2016-12-07 11:55:54 +0100
commit4ccf8fb369119f3e1532f061a7cf14dec5b3279f (patch)
tree75e86d2486baaca7a4b0c8ea655400d916f994a1
parent188fa70c809b9790dc359c34554eb972e87ccd99 (diff)
download0xFFFF-4ccf8fb369119f3e1532f061a7cf14dec5b3279f.tar.bz2
usb-device: Do not print verbose message "Reattach kernel driver to USB interface..."
-rw-r--r--src/usb-device.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/usb-device.c b/src/usb-device.c
index 2913198..9363179 100644
--- a/src/usb-device.c
+++ b/src/usb-device.c
@@ -105,8 +105,6 @@ static void usb_reattach_kernel_driver(usb_dev_handle * udev, int interface) {
if ( interface < 0 )
return;
- PRINTF_LINE("Reattach kernel driver to USB interface...");
- PRINTF_END();
usb_release_interface(udev, interface);
ioctl(*((int *)udev), _IOWR('U', 18, command), &command);
#endif