From: Andreas Färber Date: Fri, 6 Apr 2012 12:42:59 +0000 (+0200) Subject: target-ppc: Drop cpu_ppc_close() X-Git-Tag: TizenStudio_2.0_p2.3.2~208^2~4239^2~13 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e2fbb432fc4ec64d0a53c41588ede31450b6c6a8;p=sdk%2Femulator%2Fqemu.git target-ppc: Drop cpu_ppc_close() It is unused, so avoid QOM'ifying it unneededly. Signed-off-by: Andreas Färber Acked-by: David Gibson --- diff --git a/target-ppc/cpu.h b/target-ppc/cpu.h index e7fb364..1d5c602 100644 --- a/target-ppc/cpu.h +++ b/target-ppc/cpu.h @@ -1100,7 +1100,6 @@ struct mmu_ctx_t { CPUPPCState *cpu_ppc_init (const char *cpu_model); void ppc_translate_init(void); int cpu_ppc_exec (CPUPPCState *s); -void cpu_ppc_close (CPUPPCState *s); /* you can call this signal handler from your SIGBUS and SIGSEGV signal handlers to inform the virtual CPU of exceptions. non zero is returned if the signal was handled by the virtual CPU. */ diff --git a/target-ppc/helper.c b/target-ppc/helper.c index f0ea1c3..f61b8b2 100644 --- a/target-ppc/helper.c +++ b/target-ppc/helper.c @@ -3214,9 +3214,3 @@ CPUPPCState *cpu_ppc_init (const char *cpu_model) return env; } - -void cpu_ppc_close (CPUPPCState *env) -{ - /* Should also remove all opcode tables... */ - g_free(env); -}