From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LATkc-00018X-Qm for qemu-devel@nongnu.org; Wed, 10 Dec 2008 13:25:35 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LATka-00016t-Hl for qemu-devel@nongnu.org; Wed, 10 Dec 2008 13:25:33 -0500 Received: from [199.232.76.173] (port=42925 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LATka-00016n-BW for qemu-devel@nongnu.org; Wed, 10 Dec 2008 13:25:32 -0500 Received: from mx2.redhat.com ([66.187.237.31]:52928) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1LATkY-0004VN-9W for qemu-devel@nongnu.org; Wed, 10 Dec 2008 13:25:32 -0500 Received: from int-mx2.corp.redhat.com (int-mx2.corp.redhat.com [172.16.27.26]) by mx2.redhat.com (8.13.8/8.13.8) with ESMTP id mBAIPNpC024260 for ; Wed, 10 Dec 2008 13:25:25 -0500 From: Eduardo Habkost Date: Wed, 10 Dec 2008 16:24:17 -0200 Message-Id: <1228933464-7670-7-git-send-email-ehabkost@redhat.com> In-Reply-To: <1228933464-7670-1-git-send-email-ehabkost@redhat.com> References: <1228933464-7670-1-git-send-email-ehabkost@redhat.com> Subject: [Qemu-devel] [PATCH 06/13] vl.c: use LOG_IOPORT instead of #ifdefs Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Eduardo Habkost Signed-off-by: Eduardo Habkost --- vl.c | 30 ++++++------------------------ 1 files changed, 6 insertions(+), 24 deletions(-) diff --git a/vl.c b/vl.c index c9fc13c..07154d8 100644 --- a/vl.c +++ b/vl.c @@ -422,10 +422,7 @@ void isa_unassign_ioport(int start, int length) void cpu_outb(CPUState *env, int addr, int val) { -#ifdef DEBUG_IOPORT - if (loglevel & CPU_LOG_IOPORT) - fprintf(logfile, "outb: %04x %02x\n", addr, val); -#endif + LOG_IOPORT("outb: %04x %02x\n", addr, val); ioport_write(0, addr, val); #ifdef USE_KQEMU if (env) @@ -435,10 +432,7 @@ void cpu_outb(CPUState *env, int addr, int val) void cpu_outw(CPUState *env, int addr, int val) { -#ifdef DEBUG_IOPORT - if (loglevel & CPU_LOG_IOPORT) - fprintf(logfile, "outw: %04x %04x\n", addr, val); -#endif + LOG_IOPORT("outw: %04x %04x\n", addr, val); ioport_write(1, addr, val); #ifdef USE_KQEMU if (env) @@ -448,10 +442,7 @@ void cpu_outw(CPUState *env, int addr, int val) void cpu_outl(CPUState *env, int addr, int val) { -#ifdef DEBUG_IOPORT - if (loglevel & CPU_LOG_IOPORT) - fprintf(logfile, "outl: %04x %08x\n", addr, val); -#endif + LOG_IOPORT("outl: %04x %08x\n", addr, val); ioport_write(2, addr, val); #ifdef USE_KQEMU if (env) @@ -463,10 +454,7 @@ int cpu_inb(CPUState *env, int addr) { int val; val = ioport_read(0, addr); -#ifdef DEBUG_IOPORT - if (loglevel & CPU_LOG_IOPORT) - fprintf(logfile, "inb : %04x %02x\n", addr, val); -#endif + LOG_IOPORT("inb : %04x %02x\n", addr, val); #ifdef USE_KQEMU if (env) env->last_io_time = cpu_get_time_fast(); @@ -478,10 +466,7 @@ int cpu_inw(CPUState *env, int addr) { int val; val = ioport_read(1, addr); -#ifdef DEBUG_IOPORT - if (loglevel & CPU_LOG_IOPORT) - fprintf(logfile, "inw : %04x %04x\n", addr, val); -#endif + LOG_IOPORT("inw : %04x %04x\n", addr, val); #ifdef USE_KQEMU if (env) env->last_io_time = cpu_get_time_fast(); @@ -493,10 +478,7 @@ int cpu_inl(CPUState *env, int addr) { int val; val = ioport_read(2, addr); -#ifdef DEBUG_IOPORT - if (loglevel & CPU_LOG_IOPORT) - fprintf(logfile, "inl : %04x %08x\n", addr, val); -#endif + LOG_IOPORT("inl : %04x %08x\n", addr, val); #ifdef USE_KQEMU if (env) env->last_io_time = cpu_get_time_fast(); -- 1.5.5.GIT