From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:53668) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1R4KuL-0004Ru-NR for qemu-devel@nongnu.org; Thu, 15 Sep 2011 18:59:50 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1R4KuK-0006Dl-83 for qemu-devel@nongnu.org; Thu, 15 Sep 2011 18:59:49 -0400 Received: from mail.serverraum.org ([78.47.150.89]:40866) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1R4KuK-0006DS-1y for qemu-devel@nongnu.org; Thu, 15 Sep 2011 18:59:48 -0400 From: Michael Walle Date: Fri, 16 Sep 2011 00:58:59 +0200 Message-Id: <1316127541-9015-2-git-send-email-michael@walle.cc> In-Reply-To: <1316127541-9015-1-git-send-email-michael@walle.cc> References: <1316127541-9015-1-git-send-email-michael@walle.cc> Subject: [Qemu-devel] [PATCH 1/3] lm32: add missing qemu_init_vcpu() call List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Anthony Liguori Cc: Michael Walle , qemu-devel Signed-off-by: Michael Walle --- target-lm32/helper.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/target-lm32/helper.c b/target-lm32/helper.c index 014fd8d..fc0b444 100644 --- a/target-lm32/helper.c +++ b/target-lm32/helper.c @@ -218,6 +218,7 @@ CPUState *cpu_lm32_init(const char *cpu_model) cpu_exec_init(env); cpu_reset(env); + qemu_init_vcpu(env); if (!tcg_initialized) { tcg_initialized = 1; -- 1.7.2.5