From patchwork Wed Feb 12 22:26:14 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: BALATON Zoltan X-Patchwork-Id: 1237127 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=nongnu.org (client-ip=209.51.188.17; helo=lists.gnu.org; envelope-from=qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=eik.bme.hu Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 48HvXs3G7Rz9sPK for ; Thu, 13 Feb 2020 09:32:45 +1100 (AEDT) Received: from localhost ([::1]:44286 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1j20Yl-0002Pl-CG for incoming@patchwork.ozlabs.org; Wed, 12 Feb 2020 17:32:43 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:44822) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1j20YP-0002MT-BV for qemu-devel@nongnu.org; Wed, 12 Feb 2020 17:32:22 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1j20YN-0002pY-TZ for qemu-devel@nongnu.org; Wed, 12 Feb 2020 17:32:20 -0500 Received: from zero.eik.bme.hu ([2001:738:2001:2001::2001]:31078) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1j20YN-0002lH-NF; Wed, 12 Feb 2020 17:32:19 -0500 Received: from zero.eik.bme.hu (blah.eik.bme.hu [152.66.115.182]) by localhost (Postfix) with SMTP id 73D3674638A; Wed, 12 Feb 2020 23:32:07 +0100 (CET) Received: by zero.eik.bme.hu (Postfix, from userid 432) id 5A37574637F; Wed, 12 Feb 2020 23:32:07 +0100 (CET) From: BALATON Zoltan Date: Wed, 12 Feb 2020 23:26:14 +0100 Subject: [PATCH] target/ppc/cpu.h: Remove duplicate includes To: qemu-devel@nongnu.org Message-Id: <20200212223207.5A37574637F@zero.eik.bme.hu> X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 2001:738:2001:2001::2001 X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: qemu-trivial@nongnu.org, Richard Henderson , David Gibson Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: "Qemu-devel" Commit 74433bf083b added some includes but added them twice. Since these are guarded against multiple inclusion including them once is enough. Signed-off-by: BALATON Zoltan Reviewed-by: Philippe Mathieu-Daudé --- target/ppc/cpu.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/target/ppc/cpu.h b/target/ppc/cpu.h index 3a1eb76004..07dd2b4da7 100644 --- a/target/ppc/cpu.h +++ b/target/ppc/cpu.h @@ -23,8 +23,6 @@ #include "qemu/int128.h" #include "exec/cpu-defs.h" #include "cpu-qom.h" -#include "exec/cpu-defs.h" -#include "cpu-qom.h" /* #define PPC_EMULATE_32BITS_HYPV */