From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:53271) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1biOaU-0002JR-LT for qemu-devel@nongnu.org; Fri, 09 Sep 2016 12:23:35 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1biOaP-0005jy-IU for qemu-devel@nongnu.org; Fri, 09 Sep 2016 12:23:33 -0400 Received: from 1.mo178.mail-out.ovh.net ([178.33.251.53]:46045) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1biOaP-0005ji-Cb for qemu-devel@nongnu.org; Fri, 09 Sep 2016 12:23:29 -0400 Received: from player714.ha.ovh.net (b7.ovh.net [213.186.33.57]) by mo178.mail-out.ovh.net (Postfix) with ESMTP id 903BAFFC88E for ; Fri, 9 Sep 2016 18:23:28 +0200 (CEST) From: =?UTF-8?q?C=C3=A9dric=20Le=20Goater?= Date: Fri, 9 Sep 2016 18:22:44 +0200 Message-Id: <1473438177-26079-2-git-send-email-clg@kaod.org> In-Reply-To: <1473438177-26079-1-git-send-email-clg@kaod.org> References: <1473438177-26079-1-git-send-email-clg@kaod.org> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: [Qemu-devel] [PATCH v5 01/14] ast2400: rename the Aspeed SoC files to aspeed_soc List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Peter Maydell Cc: qemu-devel@nongnu.org, qemu-arm@nongnu.org, Andrew Jeffery , =?UTF-8?q?C=C3=A9dric=20Le=20Goater?= Let's prepare for new Aspeed SoCs and rename the ast2400 file to a more generic one. There are no changes in the code apart from the header file include. Signed-off-by: C=C3=A9dric Le Goater Reviewed-by: Andrew Jeffery Reviewed-by: Peter Maydell --- hw/arm/Makefile.objs | 2 +- hw/arm/{ast2400.c =3D> aspeed_soc.c} | 2 +- hw/arm/palmetto-bmc.c | 2 +- include/hw/arm/{ast2400.h =3D> aspeed_soc.h} | 0 4 files changed, 3 insertions(+), 3 deletions(-) rename hw/arm/{ast2400.c =3D> aspeed_soc.c} (99%) rename include/hw/arm/{ast2400.h =3D> aspeed_soc.h} (100%) diff --git a/hw/arm/Makefile.objs b/hw/arm/Makefile.objs index 12764ef2b719..7901294630b1 100644 --- a/hw/arm/Makefile.objs +++ b/hw/arm/Makefile.objs @@ -17,4 +17,4 @@ obj-$(CONFIG_XLNX_ZYNQMP) +=3D xlnx-zynqmp.o xlnx-ep108= .o obj-$(CONFIG_FSL_IMX25) +=3D fsl-imx25.o imx25_pdk.o obj-$(CONFIG_FSL_IMX31) +=3D fsl-imx31.o kzm.o obj-$(CONFIG_FSL_IMX6) +=3D fsl-imx6.o sabrelite.o -obj-$(CONFIG_ASPEED_SOC) +=3D ast2400.o palmetto-bmc.o +obj-$(CONFIG_ASPEED_SOC) +=3D aspeed_soc.o palmetto-bmc.o diff --git a/hw/arm/ast2400.c b/hw/arm/aspeed_soc.c similarity index 99% rename from hw/arm/ast2400.c rename to hw/arm/aspeed_soc.c index 136bf6464e1d..b272f4e48cfc 100644 --- a/hw/arm/ast2400.c +++ b/hw/arm/aspeed_soc.c @@ -15,7 +15,7 @@ #include "qemu-common.h" #include "cpu.h" #include "exec/address-spaces.h" -#include "hw/arm/ast2400.h" +#include "hw/arm/aspeed_soc.h" #include "hw/char/serial.h" #include "qemu/log.h" #include "hw/i2c/aspeed_i2c.h" diff --git a/hw/arm/palmetto-bmc.c b/hw/arm/palmetto-bmc.c index 54e29a865d88..67676a8a8042 100644 --- a/hw/arm/palmetto-bmc.c +++ b/hw/arm/palmetto-bmc.c @@ -15,7 +15,7 @@ #include "cpu.h" #include "exec/address-spaces.h" #include "hw/arm/arm.h" -#include "hw/arm/ast2400.h" +#include "hw/arm/aspeed_soc.h" #include "hw/boards.h" #include "qemu/log.h" #include "sysemu/block-backend.h" diff --git a/include/hw/arm/ast2400.h b/include/hw/arm/aspeed_soc.h similarity index 100% rename from include/hw/arm/ast2400.h rename to include/hw/arm/aspeed_soc.h --=20 2.7.4