diff --git a/hw/arm/Makefile.objs b/hw/arm/Makefile.objs index 12764ef2b7195f8dc597ec1d6d3264acab4ad12c..7901294630b16ee78cab3087cead7beb183c588b 100644 --- a/hw/arm/Makefile.objs +++ b/hw/arm/Makefile.objs @@ -17,4 +17,4 @@ obj-$(CONFIG_XLNX_ZYNQMP) += xlnx-zynqmp.o xlnx-ep108.o obj-$(CONFIG_FSL_IMX25) += fsl-imx25.o imx25_pdk.o obj-$(CONFIG_FSL_IMX31) += fsl-imx31.o kzm.o obj-$(CONFIG_FSL_IMX6) += fsl-imx6.o sabrelite.o -obj-$(CONFIG_ASPEED_SOC) += ast2400.o palmetto-bmc.o +obj-$(CONFIG_ASPEED_SOC) += 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 136bf6464e1dea21cae5a236699a660a63d86938..b272f4e48cfc22da9e95882e8351a211c0d503b3 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 54e29a865d883c43b9e8c6e4d5c911e0c332fe83..67676a8a80420b13c0a23860d07d4f2088e63702 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