From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:44182) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S4d0A-0007hy-CB for qemu-devel@nongnu.org; Mon, 05 Mar 2012 13:51:21 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1S4d08-0003AG-97 for qemu-devel@nongnu.org; Mon, 05 Mar 2012 13:51:17 -0500 Received: from cantor2.suse.de ([195.135.220.15]:41383 helo=mx2.suse.de) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S4d08-00039v-2A for qemu-devel@nongnu.org; Mon, 05 Mar 2012 13:51:16 -0500 From: Alexander Graf Date: Mon, 5 Mar 2012 19:51:14 +0100 Message-Id: <1330973474-25238-3-git-send-email-agraf@suse.de> In-Reply-To: <1330973474-25238-1-git-send-email-agraf@suse.de> References: <1330973474-25238-1-git-send-email-agraf@suse.de> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Subject: [Qemu-devel] [PATCH 2/2] Move helpers.h to helper.h List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: blauwirbel@gmail.com, =?utf-8?q?Llu=C3=ADs=20Vilanova?= , aurelien@aurel32.net From: Llu=C3=ADs Vilanova Provides a file naming scheme consistent with other targets. Signed-off-by: Llu=C3=ADs Vilanova Signed-off-by: Alexander Graf --- target-s390x/{helpers.h =3D> helper.h} | 0 target-s390x/op_helper.c | 2 +- target-s390x/translate.c | 4 ++-- 3 files changed, 3 insertions(+), 3 deletions(-) rename target-s390x/{helpers.h =3D> helper.h} (100%) diff --git a/target-s390x/helpers.h b/target-s390x/helper.h similarity index 100% rename from target-s390x/helpers.h rename to target-s390x/helper.h diff --git a/target-s390x/op_helper.c b/target-s390x/op_helper.c index cf26b29..70d98a8 100644 --- a/target-s390x/op_helper.c +++ b/target-s390x/op_helper.c @@ -21,7 +21,7 @@ #include "cpu.h" #include "dyngen-exec.h" #include "host-utils.h" -#include "helpers.h" +#include "helper.h" #include #include "kvm.h" #include "qemu-timer.h" diff --git a/target-s390x/translate.c b/target-s390x/translate.c index 71f9dcd..8fab38c 100644 --- a/target-s390x/translate.c +++ b/target-s390x/translate.c @@ -38,9 +38,9 @@ static TCGv_ptr cpu_env; =20 #include "gen-icount.h" -#include "helpers.h" +#include "helper.h" #define GEN_HELPER 1 -#include "helpers.h" +#include "helper.h" =20 typedef struct DisasContext DisasContext; struct DisasContext { --=20 1.6.0.2