From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:35140) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TTx6d-0004Jn-VW for qemu-devel@nongnu.org; Thu, 01 Nov 2012 11:54:59 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TTx6X-00087q-My for qemu-devel@nongnu.org; Thu, 01 Nov 2012 11:54:55 -0400 Received: from mx1.redhat.com ([209.132.183.28]:23624) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TTx6X-00085l-EP for qemu-devel@nongnu.org; Thu, 01 Nov 2012 11:54:49 -0400 From: Gerd Hoffmann Date: Thu, 1 Nov 2012 16:54:25 +0100 Message-Id: <1351785284-15384-13-git-send-email-kraxel@redhat.com> In-Reply-To: <1351785284-15384-1-git-send-email-kraxel@redhat.com> References: <1351785284-15384-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PATCH 12/31] usb/ehci: Guard definition of EHCI_DEBUG List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Peter Crosthwaite , Gerd Hoffmann From: Peter Crosthwaite Guard against re-definition of EHCI_DEBUG. Allows for turning on of debug info from configure (using --qemu-extra-cflags="-DEHCI_DEBUG=1") rather than source code hacking. Signed-off-by: Peter Crosthwaite Signed-off-by: Gerd Hoffmann --- hw/usb/hcd-ehci.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/hw/usb/hcd-ehci.c b/hw/usb/hcd-ehci.c index 59580fc..d3168c9 100644 --- a/hw/usb/hcd-ehci.c +++ b/hw/usb/hcd-ehci.c @@ -36,7 +36,9 @@ #include "dma.h" #include "sysemu.h" +#ifndef EHCI_DEBUG #define EHCI_DEBUG 0 +#endif #if EHCI_DEBUG #define DPRINTF printf -- 1.7.1