From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:53993) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TP8Lo-0007cF-3M for qemu-devel@nongnu.org; Fri, 19 Oct 2012 04:54:45 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TP8Lj-0008Do-OY for qemu-devel@nongnu.org; Fri, 19 Oct 2012 04:54:40 -0400 Received: from mx1.redhat.com ([209.132.183.28]:3929) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TP8Lj-0008Df-FY for qemu-devel@nongnu.org; Fri, 19 Oct 2012 04:54:35 -0400 From: Stefan Hajnoczi Date: Fri, 19 Oct 2012 10:54:20 +0200 Message-Id: <1350636864-22263-3-git-send-email-stefanha@redhat.com> In-Reply-To: <1350636864-22263-1-git-send-email-stefanha@redhat.com> References: <1350636864-22263-1-git-send-email-stefanha@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: [Qemu-devel] [PATCH 2/6] targphys.h: Don't define target_phys_addr_t for user-mode emulators List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Anthony Liguori Cc: Peter Maydell , qemu-devel@nongnu.org, Stefan Hajnoczi From: Peter Maydell Commit 4be403c accidentally defined the target_phys_addr_t type when building user-mode emulators. Since the type doesn't really make any sense except for system emulators, avoid defining it when building in user mode. Signed-off-by: Peter Maydell Acked-by: Andreas F=C3=A4rber Signed-off-by: Stefan Hajnoczi --- targphys.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/targphys.h b/targphys.h index 08cade9..50911fd 100644 --- a/targphys.h +++ b/targphys.h @@ -3,6 +3,8 @@ #ifndef TARGPHYS_H #define TARGPHYS_H =20 +#ifndef CONFIG_USER_ONLY + #define TARGET_PHYS_ADDR_BITS 64 /* target_phys_addr_t is the type of a physical address (its size can be different from 'target_ulong'). */ @@ -18,3 +20,5 @@ typedef uint64_t target_phys_addr_t; #define TARGET_PRIXPHYS PRIX64 =20 #endif + +#endif --=20 1.7.11.7