From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NnDQR-0000Gm-C0 for qemu-devel@nongnu.org; Thu, 04 Mar 2010 10:57:23 -0500 Received: from [199.232.76.173] (port=35927 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NnDQR-0000Ga-2X for qemu-devel@nongnu.org; Thu, 04 Mar 2010 10:57:23 -0500 Received: from Debian-exim by monty-python.gnu.org with spam-scanned (Exim 4.60) (envelope-from ) id 1NnDQL-0000Gt-PD for qemu-devel@nongnu.org; Thu, 04 Mar 2010 10:57:21 -0500 Received: from oxygen.pond.sub.org ([213.239.205.148]:39609) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1NnDQL-0000Fp-7s for qemu-devel@nongnu.org; Thu, 04 Mar 2010 10:57:17 -0500 Received: from blackfin.pond.sub.org (pD9E38041.dip.t-dialin.net [217.227.128.65]) by oxygen.pond.sub.org (Postfix) with ESMTPA id 50C98276D6B for ; Thu, 4 Mar 2010 16:57:12 +0100 (CET) From: Markus Armbruster Date: Thu, 4 Mar 2010 16:56:22 +0100 Message-Id: <1267718231-13303-2-git-send-email-armbru@redhat.com> In-Reply-To: <1267718231-13303-1-git-send-email-armbru@redhat.com> References: <1267718231-13303-1-git-send-email-armbru@redhat.com> Subject: [Qemu-devel] [PATCH 01/50] usb: Remove disabled monitor_printf() in usb_read_file() List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Luiz Capitulino The monitor_printf() reports failure. Printing is wrong, because the caller tries various arguments, and expects the function to fail for some or all. Disabled since commit 26a9e82a. Remove it. Signed-off-by: Markus Armbruster --- usb-linux.c | 8 -------- 1 files changed, 0 insertions(+), 8 deletions(-) diff --git a/usb-linux.c b/usb-linux.c index a9c15c6..d0d7cff 100644 --- a/usb-linux.c +++ b/usb-linux.c @@ -1188,9 +1188,6 @@ static int usb_host_scan_dev(void *opaque, USBScanFunc *func) */ static int usb_host_read_file(char *line, size_t line_size, const char *device_file, const char *device_name) { -#if 0 - Monitor *mon = cur_mon; -#endif FILE *f; int ret = 0; char filename[PATH_MAX]; @@ -1201,11 +1198,6 @@ static int usb_host_read_file(char *line, size_t line_size, const char *device_f if (f) { ret = fgets(line, line_size, f) != NULL; fclose(f); -#if 0 - } else { - if (mon) - monitor_printf(mon, "husb: could not open %s\n", filename); -#endif } return ret; -- 1.6.6.1