From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:49351) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Q9we3-0005YF-3c for qemu-devel@nongnu.org; Wed, 13 Apr 2011 05:46:00 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Q9wdu-0000H0-Nz for qemu-devel@nongnu.org; Wed, 13 Apr 2011 05:45:55 -0400 Received: from ipmail06.adl6.internode.on.net ([150.101.137.145]:28864) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Q9wdu-0000GM-Ck for qemu-devel@nongnu.org; Wed, 13 Apr 2011 05:45:46 -0400 From: Brad Hards Date: Wed, 13 Apr 2011 19:45:34 +1000 Message-Id: <1302687934-1287-5-git-send-email-bradh@frogmouth.net> In-Reply-To: <1302687934-1287-1-git-send-email-bradh@frogmouth.net> References: <1302687934-1287-1-git-send-email-bradh@frogmouth.net> Subject: [Qemu-devel] [PATCH 4/4] usb: use DPRINTF instead of printf for some simple cases List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Brad Hards Signed-off-by: Brad Hards --- usb-linux.c | 16 ++++++++-------- 1 files changed, 8 insertions(+), 8 deletions(-) diff --git a/usb-linux.c b/usb-linux.c index 1f33c2c..b02a0f9 100644 --- a/usb-linux.c +++ b/usb-linux.c @@ -233,8 +233,8 @@ static void async_complete(void *opaque) return; } if (errno == ENODEV && !s->closing) { - printf("husb: device %d.%d disconnected\n", - s->bus_num, s->addr); + DPRINTF("husb: device %d.%d disconnected\n", + s->bus_num, s->addr); usb_host_close(s); usb_host_auto_check(NULL); return; @@ -320,7 +320,7 @@ static int usb_host_claim_interfaces(USBHostDevice *dev, int configuration) } config_descr_len = dev->descr[i]; - printf("husb: config #%d need %d\n", dev->descr[i + 5], configuration); + DPRINTF("husb: config #%d need %d\n", dev->descr[i + 5], configuration); if (configuration < 0 || configuration == dev->descr[i + 5]) { configuration = dev->descr[i + 5]; @@ -359,7 +359,7 @@ static int usb_host_claim_interfaces(USBHostDevice *dev, int configuration) ret = ioctl(dev->fd, USBDEVFS_CLAIMINTERFACE, &interface); if (ret < 0) { if (errno == EBUSY) { - printf("husb: update iface. device already grabbed\n"); + DPRINTF("husb: update iface. device already grabbed\n"); } else { perror("husb: failed to claim interface"); } @@ -368,8 +368,8 @@ static int usb_host_claim_interfaces(USBHostDevice *dev, int configuration) } } - printf("husb: %d interfaces claimed for configuration %d\n", - nb_interfaces, configuration); + DPRINTF("husb: %d interfaces claimed for configuration %d\n", + nb_interfaces, configuration); dev->ninterfaces = nb_interfaces; dev->configuration = configuration; @@ -929,7 +929,7 @@ static int usb_host_open(USBHostDevice *dev, int bus_num, if (dev->fd != -1) { goto fail; } - printf("husb: open device %d.%d\n", bus_num, addr); + DPRINTF("husb: open device %d.%d\n", bus_num, addr); if (!usb_host_device_path) { perror("husb: USB Host Device Path not set"); @@ -984,7 +984,7 @@ static int usb_host_open(USBHostDevice *dev, int bus_num, goto fail; } - printf("husb: grabbed usb device %d.%d\n", bus_num, addr); + DPRINTF("husb: grabbed usb device %d.%d\n", bus_num, addr); ret = usb_linux_update_endp_table(dev); if (ret) { -- 1.7.1