From patchwork Thu Nov 22 17:27:25 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Eduardo Habkost X-Patchwork-Id: 201102 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id C24872C007B for ; Fri, 23 Nov 2012 05:11:51 +1100 (EST) Received: from localhost ([::1]:55711 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TbaYK-0007wj-Ae for incoming@patchwork.ozlabs.org; Thu, 22 Nov 2012 12:27:04 -0500 Received: from eggs.gnu.org ([208.118.235.92]:40036) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TbaXh-0006Lm-6v for qemu-devel@nongnu.org; Thu, 22 Nov 2012 12:26:30 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TbaXY-0007IM-Jx for qemu-devel@nongnu.org; Thu, 22 Nov 2012 12:26:25 -0500 Received: from mx1.redhat.com ([209.132.183.28]:6528) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TbaXY-0007Hy-Bw for qemu-devel@nongnu.org; Thu, 22 Nov 2012 12:26:16 -0500 Received: from int-mx12.intmail.prod.int.phx2.redhat.com (int-mx12.intmail.prod.int.phx2.redhat.com [10.5.11.25]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id qAMHQFRm005276 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Thu, 22 Nov 2012 12:26:15 -0500 Received: from blackpad.lan.raisama.net (vpn1-5-104.gru2.redhat.com [10.97.5.104]) by int-mx12.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id qAMHQEpN001823; Thu, 22 Nov 2012 12:26:14 -0500 Received: by blackpad.lan.raisama.net (Postfix, from userid 500) id 6FAC7201180; Thu, 22 Nov 2012 15:27:39 -0200 (BRST) From: Eduardo Habkost To: qemu-devel@nongnu.org Date: Thu, 22 Nov 2012 15:27:25 -0200 Message-Id: <1353605251-22218-3-git-send-email-ehabkost@redhat.com> In-Reply-To: <1353605251-22218-1-git-send-email-ehabkost@redhat.com> References: <1353605251-22218-1-git-send-email-ehabkost@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.68 on 10.5.11.25 X-MIME-Autoconverted: from 8bit to quoted-printable by mx1.redhat.com id qAMHQFRm005276 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 209.132.183.28 Cc: Igor Mammedov , =?UTF-8?q?Andreas=20F=C3=A4rber?= Subject: [Qemu-devel] [PATCH 2/8] user: Rename qemu-types.h to qemu-user-types.h X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org 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 Signed-off-by: Andreas Färber --- 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/qemu-types.h b/qemu-user-types.h similarity index 100% rename from qemu-types.h rename to qemu-user-types.h 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 c9c51b8..d6b2b19 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"