diff options
author | Peter Maydell | 2019-05-23 15:47:43 +0200 |
---|---|---|
committer | Peter Maydell | 2019-05-23 15:47:43 +0200 |
commit | 12ec8bd51e81a025a444585359f019f49b57a702 (patch) | |
tree | 37bf229358f68a5c425c5fc8e1589b4ee6116990 /include/hw/arm/virt.h | |
parent | arm: Remove unnecessary includes of hw/arm/arm.h (diff) | |
download | qemu-12ec8bd51e81a025a444585359f019f49b57a702.tar.gz qemu-12ec8bd51e81a025a444585359f019f49b57a702.tar.xz qemu-12ec8bd51e81a025a444585359f019f49b57a702.zip |
arm: Rename hw/arm/arm.h to hw/arm/boot.h
The header file hw/arm/arm.h now includes only declarations
relating to hw/arm/boot.c functionality. Rename it accordingly,
and adjust its header comment.
The bulk of this commit was created via
perl -pi -e 's|hw/arm/arm.h|hw/arm/boot.h|' hw/arm/*.c include/hw/arm/*.h
In a few cases we can just delete the #include:
hw/arm/msf2-soc.c, include/hw/arm/aspeed_soc.h and
include/hw/arm/bcm2836.h did not require it.
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Tested-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-id: 20190516163857.6430-4-peter.maydell@linaro.org
Diffstat (limited to 'include/hw/arm/virt.h')
-rw-r--r-- | include/hw/arm/virt.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/hw/arm/virt.h b/include/hw/arm/virt.h index 424070924e..73005f05ae 100644 --- a/include/hw/arm/virt.h +++ b/include/hw/arm/virt.h @@ -34,7 +34,7 @@ #include "exec/hwaddr.h" #include "qemu/notify.h" #include "hw/boards.h" -#include "hw/arm/arm.h" +#include "hw/arm/boot.h" #include "hw/block/flash.h" #include "sysemu/kvm.h" #include "hw/intc/arm_gicv3_common.h" |