From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NwKVk-0006WC-SH for qemu-devel@nongnu.org; Mon, 29 Mar 2010 15:20:32 -0400 Received: from [140.186.70.92] (port=33831 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NwKVj-0006Vy-A9 for qemu-devel@nongnu.org; Mon, 29 Mar 2010 15:20:32 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1NwKVh-0008CW-1t for qemu-devel@nongnu.org; Mon, 29 Mar 2010 15:20:31 -0400 Received: from moutng.kundenserver.de ([212.227.126.187]:60140) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1NwKVg-0008CO-Kk for qemu-devel@nongnu.org; Mon, 29 Mar 2010 15:20:29 -0400 From: Stefan Weil Date: Mon, 29 Mar 2010 21:17:02 +0200 Message-Id: <1269890225-13639-12-git-send-email-weil@mail.berlios.de> In-Reply-To: <1269890225-13639-1-git-send-email-weil@mail.berlios.de> References: <1269890225-13639-1-git-send-email-weil@mail.berlios.de> Subject: [Qemu-devel] [PATCH 11/14] target-sh4: Use fprintf_function List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: QEMU Developers Signed-off-by: Stefan Weil --- target-sh4/cpu.h | 2 +- target-sh4/translate.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/target-sh4/cpu.h b/target-sh4/cpu.h index f8b1680..78602af 100644 --- a/target-sh4/cpu.h +++ b/target-sh4/cpu.h @@ -168,7 +168,7 @@ int cpu_sh4_handle_mmu_fault(CPUSH4State * env, target_ulong address, int rw, #define cpu_handle_mmu_fault cpu_sh4_handle_mmu_fault void do_interrupt(CPUSH4State * env); -void sh4_cpu_list(FILE *f, int (*cpu_fprintf)(FILE *f, const char *fmt, ...)); +void sh4_cpu_list(FILE *f, fprintf_function cpu_fprintf); #if !defined(CONFIG_USER_ONLY) void cpu_sh4_invalidate_tlb(CPUSH4State *s); void cpu_sh4_write_mmaped_utlb_addr(CPUSH4State *s, target_phys_addr_t addr, diff --git a/target-sh4/translate.c b/target-sh4/translate.c index bff3188..bb6a10a 100644 --- a/target-sh4/translate.c +++ b/target-sh4/translate.c @@ -255,7 +255,7 @@ static const sh4_def_t *cpu_sh4_find_by_name(const char *name) return NULL; } -void sh4_cpu_list(FILE *f, int (*cpu_fprintf)(FILE *f, const char *fmt, ...)) +void sh4_cpu_list(FILE *f, fprintf_function cpu_fprintf) { int i; -- 1.7.0