From patchwork Fri Jun 22 11:30:58 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Peter Maydell X-Patchwork-Id: 9540 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id 91C7923EE3 for ; Fri, 22 Jun 2012 11:31:06 +0000 (UTC) Received: from mail-yw0-f50.google.com (mail-yw0-f50.google.com [209.85.213.50]) by fiordland.canonical.com (Postfix) with ESMTP id 57830A181EA for ; Fri, 22 Jun 2012 11:31:06 +0000 (UTC) Received: by yhjj63 with SMTP id j63so1645878yhj.37 for ; Fri, 22 Jun 2012 04:31:05 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-forwarded-to:x-forwarded-for:delivered-to:received-spf:from:to:cc :subject:date:message-id:x-mailer:in-reply-to:references :x-gm-message-state; bh=Nru3R3shtrXZj5ttmrYovqC+ZckOPtOZsXkB78lYq7g=; b=LUxQUsQ0pP+kxj4sRyOdZ+NEyymzv0Lr1nkL7XgZRFQ9qkoWBNM4V7TEFc5CKa+5n9 rVm4Zct0itPLCLVhFbKyRJzhKoiUW6ABrD65yt9I1k/LMwlDLUXP3L4H92++oneHW7eT XpX7Osrwk01WQiqSxDCV+DmW5zKhQoKtZvGtzqAblJ03gqkiXF2qveHBcFRIZNIMqR03 4KYLWM5G+0xwyPqaL/o7Un7gr8LWsTK1JYirtqlGywUNpa0sdPVsl7QL1DgWz4e08Wpm ba/7oSDGvr6mUR5d8zqsW5eDaYMnZap3DrzL7+OxqQp/ZIJH+39ouOTSpEaYNHATvH1H Sywg== Received: by 10.50.195.234 with SMTP id ih10mr1133790igc.0.1340364665487; Fri, 22 Jun 2012 04:31:05 -0700 (PDT) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.231.24.148 with SMTP id v20csp62029ibb; Fri, 22 Jun 2012 04:31:04 -0700 (PDT) Received: by 10.216.199.75 with SMTP id w53mr1052730wen.14.1340364663997; Fri, 22 Jun 2012 04:31:03 -0700 (PDT) Received: from mnementh.archaic.org.uk (mnementh.archaic.org.uk. [81.2.115.146]) by mx.google.com with ESMTPS id dz2si47740494wib.14.2012.06.22.04.31.02 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 22 Jun 2012 04:31:03 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of pm215@archaic.org.uk designates 81.2.115.146 as permitted sender) client-ip=81.2.115.146; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of pm215@archaic.org.uk designates 81.2.115.146 as permitted sender) smtp.mail=pm215@archaic.org.uk Received: from pm215 by mnementh.archaic.org.uk with local (Exim 4.72) (envelope-from ) id 1Si24p-0005GH-VK; Fri, 22 Jun 2012 12:30:59 +0100 From: Peter Maydell To: qemu-devel@nongnu.org Cc: qemu-trivial@nongnu.org, patches@linaro.org Subject: [PATCH 1/2] cpu-common.h: Remove unnecessary guard on including targphys.h Date: Fri, 22 Jun 2012 12:30:58 +0100 Message-Id: <1340364659-20200-2-git-send-email-peter.maydell@linaro.org> X-Mailer: git-send-email 1.7.2.5 In-Reply-To: <1340364659-20200-1-git-send-email-peter.maydell@linaro.org> References: <1340364659-20200-1-git-send-email-peter.maydell@linaro.org> X-Gm-Message-State: ALoCoQl9bZvhVoC7I/vVnN5fosgQiARNUDUcXXA+wOFWHoPAaF3/2Z6v5T/Mu+fI43UggmVBYuhr There's no need to make the include of targphys.h conditional on whether TARGET_PHYS_ADDR_BITS is defined, because targphys.h itself checks that and does nothing if it isn't. Signed-off-by: Peter Maydell Reviewed-by: Andreas Färber --- cpu-common.h | 2 -- 1 files changed, 0 insertions(+), 2 deletions(-) diff --git a/cpu-common.h b/cpu-common.h index 1fe3280..321037f 100644 --- a/cpu-common.h +++ b/cpu-common.h @@ -3,9 +3,7 @@ /* CPU interfaces that are target independent. */ -#ifdef TARGET_PHYS_ADDR_BITS #include "targphys.h" -#endif #ifndef NEED_CPU_H #include "poison.h"