From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:35505) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aO8BM-0006FN-0u for qemu-devel@nongnu.org; Tue, 26 Jan 2016 13:17:37 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aO8BK-0007VM-RF for qemu-devel@nongnu.org; Tue, 26 Jan 2016 13:17:35 -0500 Received: from mnementh.archaic.org.uk ([2001:8b0:1d0::1]:59628) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aO8BK-0007UI-Kb for qemu-devel@nongnu.org; Tue, 26 Jan 2016 13:17:34 -0500 From: Peter Maydell Date: Tue, 26 Jan 2016 18:17:27 +0000 Message-Id: <1453832250-766-35-git-send-email-peter.maydell@linaro.org> In-Reply-To: <1453832250-766-1-git-send-email-peter.maydell@linaro.org> References: <1453832250-766-1-git-send-email-peter.maydell@linaro.org> Subject: [Qemu-devel] [PATCH 34/37] tilegx: Clean up includes List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: patches@linaro.org Clean up includes so that osdep.h is included first and headers which it implies are not included manually. This commit was created with scripts/clean-includes. Signed-off-by: Peter Maydell --- target-tilegx/cpu.c | 1 + target-tilegx/helper.c | 1 + target-tilegx/simd_helper.c | 1 + target-tilegx/translate.c | 1 + 4 files changed, 4 insertions(+) diff --git a/target-tilegx/cpu.c b/target-tilegx/cpu.c index c249704..eceeb2c 100644 --- a/target-tilegx/cpu.c +++ b/target-tilegx/cpu.c @@ -18,6 +18,7 @@ * */ +#include "qemu/osdep.h" #include "cpu.h" #include "qemu-common.h" #include "hw/qdev-properties.h" diff --git a/target-tilegx/helper.c b/target-tilegx/helper.c index dda821f..616c5c7 100644 --- a/target-tilegx/helper.c +++ b/target-tilegx/helper.c @@ -18,6 +18,7 @@ * */ +#include "qemu/osdep.h" #include "cpu.h" #include "qemu-common.h" #include "exec/helper-proto.h" diff --git a/target-tilegx/simd_helper.c b/target-tilegx/simd_helper.c index 6d7bb5c..2d40ddb 100644 --- a/target-tilegx/simd_helper.c +++ b/target-tilegx/simd_helper.c @@ -18,6 +18,7 @@ * */ +#include "qemu/osdep.h" #include "cpu.h" #include "qemu-common.h" #include "exec/helper-proto.h" diff --git a/target-tilegx/translate.c b/target-tilegx/translate.c index 354f25a..2088f87 100644 --- a/target-tilegx/translate.c +++ b/target-tilegx/translate.c @@ -18,6 +18,7 @@ * */ +#include "qemu/osdep.h" #include "cpu.h" #include "qemu/log.h" #include "disas/disas.h" -- 1.9.1