From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:60755) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Si257-0004F4-NW for qemu-devel@nongnu.org; Fri, 22 Jun 2012 07:31:21 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Si251-0005OB-FF for qemu-devel@nongnu.org; Fri, 22 Jun 2012 07:31:17 -0400 From: Peter Maydell Date: Fri, 22 Jun 2012 12:30:58 +0100 Message-Id: <1340364659-20200-2-git-send-email-peter.maydell@linaro.org> In-Reply-To: <1340364659-20200-1-git-send-email-peter.maydell@linaro.org> References: <1340364659-20200-1-git-send-email-peter.maydell@linaro.org> Subject: [Qemu-devel] [PATCH 1/2] cpu-common.h: Remove unnecessary guard on including targphys.h List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: qemu-trivial@nongnu.org, patches@linaro.org 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 --- 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" -- 1.7.1