Commit bd2be150 authored by Peter Maydell's avatar Peter Maydell Committed by Paolo Bonzini
Browse files

arm: fix location of some include files



The recent rearrangement of include files had some minor errors:
 devices.h is not ARM specific and should not be in arm/
 arm.h should be in arm/

Move these two headers to correct this.

Signed-off-by: default avatarPeter Maydell <peter.maydell@linaro.org>
Signed-off-by: default avatarPaolo Bonzini <pbonzini@redhat.com>
parent e2ec3f97
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -9,7 +9,7 @@
#include "cpu.h"
#include "exec/exec-all.h"
#include "hw/hw.h"
#include "hw/arm/devices.h"
#include "hw/devices.h"
#include "sysemu/sysemu.h"
#include "alpha_sys.h"
#include "exec/address-spaces.h"
+1 −1
Original line number Diff line number Diff line
@@ -8,7 +8,7 @@
 */

#include "hw/sysbus.h"
#include "hw/arm.h"
#include "hw/arm/arm.h"
#include "hw/loader.h"
#include "elf.h"

+1 −1
Original line number Diff line number Diff line
@@ -9,7 +9,7 @@

#include "config.h"
#include "hw/hw.h"
#include "hw/arm.h"
#include "hw/arm/arm.h"
#include "sysemu/sysemu.h"
#include "hw/boards.h"
#include "hw/loader.h"
+2 −2
Original line number Diff line number Diff line
@@ -11,9 +11,9 @@
#include "hw/hw.h"
#include "hw/sysbus.h"
#include "hw/boards.h"
#include "hw/arm/devices.h"
#include "hw/devices.h"
#include "strongarm.h"
#include "hw/arm.h"
#include "hw/arm/arm.h"
#include "hw/block/flash.h"
#include "sysemu/blockdev.h"
#include "exec/address-spaces.h"
+1 −1
Original line number Diff line number Diff line
@@ -24,7 +24,7 @@
#include "hw/boards.h"
#include "sysemu/sysemu.h"
#include "hw/sysbus.h"
#include "hw/arm.h"
#include "hw/arm/arm.h"
#include "hw/loader.h"
#include "hw/arm/exynos4210.h"
#include "hw/usb/hcd-ehci.h"
Loading