From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:46966) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TQrDq-0003TA-5d for qemu-devel@nongnu.org; Tue, 23 Oct 2012 23:01:41 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TQrDo-0006G6-BB for qemu-devel@nongnu.org; Tue, 23 Oct 2012 23:01:34 -0400 Received: from mx1.redhat.com ([209.132.183.28]:53843) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TQrDo-0006Fl-1z for qemu-devel@nongnu.org; Tue, 23 Oct 2012 23:01:32 -0400 From: Eduardo Habkost Date: Wed, 24 Oct 2012 01:01:46 -0200 Message-Id: <1351047728-20360-3-git-send-email-ehabkost@redhat.com> In-Reply-To: <1351047728-20360-1-git-send-email-ehabkost@redhat.com> References: <1351047728-20360-1-git-send-email-ehabkost@redhat.com> Subject: [Qemu-devel] [PATCH 02/24] user: rename qemu-types.h to qemu-user-types.h List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: peter.maydell@linaro.org, riku.voipio@iki.fi, blauwirbel@gmail.com, Anthony Liguori , Igor Mammedov , =?UTF-8?q?Andreas=20F=C3=A4rber?= The header file is specific for *-user, but I plan to introduce a more generic qemu-types.h file, so I'm renaming it. Signed-off-by: Eduardo Habkost --- Cc: Blue Swirl Cc: Riku Voipio --- bsd-user/qemu.h | 2 +- cpu-all.h | 2 +- linux-user/qemu.h | 2 +- qemu-types.h => qemu-user-types.h | 0 4 files changed, 3 insertions(+), 3 deletions(-) rename qemu-types.h => qemu-user-types.h (100%) diff --git a/bsd-user/qemu.h b/bsd-user/qemu.h index 8a5ee3d..d268899 100644 --- a/bsd-user/qemu.h +++ b/bsd-user/qemu.h @@ -11,7 +11,7 @@ #include #endif /* DEBUG_REMAP */ -#include "qemu-types.h" +#include "qemu-user-types.h" enum BSDType { target_freebsd, diff --git a/cpu-all.h b/cpu-all.h index 6606432..26c1c0a 100644 --- a/cpu-all.h +++ b/cpu-all.h @@ -180,7 +180,7 @@ static inline void tswap64s(uint64_t *s) #if defined(CONFIG_USER_ONLY) #include -#include "qemu-types.h" +#include "qemu-user-types.h" /* On some host systems the guest address space is reserved on the host. * This allows the guest address space to be offset to a convenient location. diff --git a/linux-user/qemu.h b/linux-user/qemu.h index 5e53dca..ceddb3c 100644 --- a/linux-user/qemu.h +++ b/linux-user/qemu.h @@ -11,7 +11,7 @@ #include #endif /* DEBUG_REMAP */ -#include "qemu-types.h" +#include "qemu-user-types.h" #include "thunk.h" #include "syscall_defs.h" diff --git a/qemu-types.h b/qemu-user-types.h similarity index 100% rename from qemu-types.h rename to qemu-user-types.h -- 1.7.11.7