From patchwork Tue Aug 27 21:46:28 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Richard Henderson X-Patchwork-Id: 270263 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [IPv6:2001:4830:134:3::11]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 7D2402C0098 for ; Wed, 28 Aug 2013 07:50:33 +1000 (EST) Received: from localhost ([::1]:58803 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VER9j-0002fl-PY for incoming@patchwork.ozlabs.org; Tue, 27 Aug 2013 17:50:31 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:42410) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VER6e-0006u4-LS for qemu-devel@nongnu.org; Tue, 27 Aug 2013 17:47:26 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VER6Y-0008JO-4p for qemu-devel@nongnu.org; Tue, 27 Aug 2013 17:47:20 -0400 Received: from mail-qa0-x236.google.com ([2607:f8b0:400d:c00::236]:54077) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VER6Y-0008JK-0f for qemu-devel@nongnu.org; Tue, 27 Aug 2013 17:47:14 -0400 Received: by mail-qa0-f54.google.com with SMTP id bn16so1430059qab.6 for ; Tue, 27 Aug 2013 14:47:13 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:cc:subject:date:message-id:in-reply-to:references; bh=Kwz5pztalsAJI45bt6s+GcLUOD1V4xVs48IhkOnn1Ec=; b=1EkSAjIOn3pq2RmzYZIkR8kOU5WJuFhUX3uYYrJEIJjZLz2UszskpDJtbqA4P6rH84 StP+wkMFa/MbM2BndQW9YRGnTIzq2I3aQoCEJkMBQBQkt6KKuvKGCNUD83enRBnXNkNh RUVyAnTYwl9uqmA4stpEX57x1IryqGlzpoUFnW9GTlPdXqO+Ll6J7KKqt9upgaTWqwpU EzbGqQE0C4oSs8QBI/8HmWg0YAVm7bouXmnLTSaR4rSuh7onlezzUBzBdKuxmeX+Hit1 CeZHLsoH56kZykTyVlAFPN82dj0R1k1r4PJZatlaQQevnGK/MWGMRYivl10zX2nZMLUJ VskQ== X-Received: by 10.224.138.8 with SMTP id y8mr25864786qat.27.1377640033589; Tue, 27 Aug 2013 14:47:13 -0700 (PDT) Received: from anchor.com (50-194-63-110-static.hfc.comcastbusiness.net. [50.194.63.110]) by mx.google.com with ESMTPSA id w8sm30530090qej.3.1969.12.31.16.00.00 (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Tue, 27 Aug 2013 14:47:12 -0700 (PDT) From: Richard Henderson To: qemu-devel@nongnu.org Date: Tue, 27 Aug 2013 14:46:28 -0700 Message-Id: <1377639991-16028-5-git-send-email-rth@twiddle.net> X-Mailer: git-send-email 1.8.1.4 In-Reply-To: <1377639991-16028-1-git-send-email-rth@twiddle.net> References: <1377639991-16028-1-git-send-email-rth@twiddle.net> X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2607:f8b0:400d:c00::236 Cc: aurelien@aurel32.net Subject: [Qemu-devel] [PATCH 4/7] target: Include softmmu_exec.h where forgotten X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Several targets forgot to include softmmu_exec.h, which would break them with a header cleanup to follow. Signed-off-by: Richard Henderson --- target-lm32/op_helper.c | 2 ++ target-moxie/helper.c | 1 + target-ppc/mmu_helper.c | 2 ++ target-unicore32/op_helper.c | 2 ++ target-xtensa/op_helper.c | 1 + 5 files changed, 8 insertions(+) diff --git a/target-lm32/op_helper.c b/target-lm32/op_helper.c index 2dab9f2..8f5ef55 100644 --- a/target-lm32/op_helper.c +++ b/target-lm32/op_helper.c @@ -6,6 +6,8 @@ #include "hw/lm32/lm32_pic.h" #include "hw/char/lm32_juart.h" +#include "exec/softmmu_exec.h" + #if !defined(CONFIG_USER_ONLY) #define MMUSUFFIX _mmu #define SHIFT 0 diff --git a/target-moxie/helper.c b/target-moxie/helper.c index b12e4ff..7859102 100644 --- a/target-moxie/helper.c +++ b/target-moxie/helper.c @@ -25,6 +25,7 @@ #include "cpu.h" #include "mmu.h" #include "exec/exec-all.h" +#include "exec/softmmu_exec.h" #include "qemu/host-utils.h" #include "helper.h" diff --git a/target-ppc/mmu_helper.c b/target-ppc/mmu_helper.c index 5dd4e05..44f04e5 100644 --- a/target-ppc/mmu_helper.c +++ b/target-ppc/mmu_helper.c @@ -2871,6 +2871,8 @@ void helper_booke206_tlbflush(CPUPPCState *env, uint32_t type) /*****************************************************************************/ +#include "exec/softmmu_exec.h" + #define MMUSUFFIX _mmu #define SHIFT 0 diff --git a/target-unicore32/op_helper.c b/target-unicore32/op_helper.c index 6443ffe..4f9f41e 100644 --- a/target-unicore32/op_helper.c +++ b/target-unicore32/op_helper.c @@ -239,6 +239,8 @@ uint32_t HELPER(ror_cc)(CPUUniCore32State *env, uint32_t x, uint32_t i) } #ifndef CONFIG_USER_ONLY +#include "exec/softmmu_exec.h" + #define MMUSUFFIX _mmu #define SHIFT 0 diff --git a/target-xtensa/op_helper.c b/target-xtensa/op_helper.c index 01123af..cf97025 100644 --- a/target-xtensa/op_helper.c +++ b/target-xtensa/op_helper.c @@ -28,6 +28,7 @@ #include "cpu.h" #include "helper.h" #include "qemu/host-utils.h" +#include "exec/softmmu_exec.h" static void do_unaligned_access(CPUXtensaState *env, target_ulong addr, int is_write, int is_user, uintptr_t retaddr);