From patchwork Fri Feb 21 03:36:39 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: David Gibson X-Patchwork-Id: 11395467 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id F3B111395 for ; Fri, 21 Feb 2020 03:42:25 +0000 (UTC) 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 mail.kernel.org (Postfix) with ESMTPS id CACEE208C4 for ; Fri, 21 Feb 2020 03:42:25 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=fail reason="signature verification failed" (1024-bit key) header.d=gibson.dropbear.id.au header.i=@gibson.dropbear.id.au header.b="IKM18Rfg" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org CACEE208C4 Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=gibson.dropbear.id.au Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=qemu-devel-bounces+patchwork-qemu-devel=patchwork.kernel.org@nongnu.org Received: from localhost ([::1]:51768 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1j4zCr-0002Ym-0Z for patchwork-qemu-devel@patchwork.kernel.org; Thu, 20 Feb 2020 22:42:25 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:48916) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1j4z7t-00028X-OV for qemu-devel@nongnu.org; Thu, 20 Feb 2020 22:37:19 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1j4z7s-0008FE-Kc for qemu-devel@nongnu.org; Thu, 20 Feb 2020 22:37:17 -0500 Received: from bilbo.ozlabs.org ([2401:3900:2:1::2]:59091 helo=ozlabs.org) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1j4z7s-0007yo-8W; Thu, 20 Feb 2020 22:37:16 -0500 Received: by ozlabs.org (Postfix, from userid 1007) id 48NxwF49NWz9sSQ; Fri, 21 Feb 2020 14:37:00 +1100 (AEDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=gibson.dropbear.id.au; s=201602; t=1582256221; bh=VHIoi9FLGrk+PIzLBolIqntm255sHndLBN6fVSUxh1Q=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=IKM18RfgB4ZdUZKje1D1QGAq/qzvhCWbZUcPi+yoLvkOs/oMh5w1g4N+fBK1/vQqR SJWXiVXEg5ryL/hucHc1+Q+3nRI2rUr5I5G4baBaW+PtkWtXE2YCBfvpkdXrUT97AK XdImbZXSl+QecnDrdSKjzlpQfQJQl5MUuOeB4nuw= From: David Gibson To: peter.maydell@linaro.org Subject: [PULL 09/20] target/ppc/cpu.h: Remove duplicate includes Date: Fri, 21 Feb 2020 14:36:39 +1100 Message-Id: <20200221033650.444386-10-david@gibson.dropbear.id.au> X-Mailer: git-send-email 2.24.1 In-Reply-To: <20200221033650.444386-1-david@gibson.dropbear.id.au> References: <20200221033650.444386-1-david@gibson.dropbear.id.au> MIME-Version: 1.0 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 2401:3900:2:1::2 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: lvivier@redhat.com, aik@ozlabs.ru, qemu-devel@nongnu.org, groug@kaod.org, qemu-ppc@nongnu.org, clg@kaod.org, =?utf-8?q?Philippe_Mathieu-Daud=C3=A9?= , David Gibson Errors-To: qemu-devel-bounces+patchwork-qemu-devel=patchwork.kernel.org@nongnu.org Sender: "Qemu-devel" From: BALATON Zoltan 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 Message-Id: <20200212223207.5A37574637F@zero.eik.bme.hu> Reviewed-by: Philippe Mathieu-Daudé Signed-off-by: David Gibson --- 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 */