diff options
author | Peter Maydell | 2013-04-09 16:26:55 +0200 |
---|---|---|
committer | Paolo Bonzini | 2013-04-15 15:16:01 +0200 |
commit | bd2be1500337f0349f70802e4d8d43f5aca61477 (patch) | |
tree | 298decbdd9122a354dc99258892920379ea4649b /hw/microblaze | |
parent | qjson: to_json() case QTYPE_QSTRING is buggy, rewrite (diff) | |
download | qemu-bd2be1500337f0349f70802e4d8d43f5aca61477.tar.gz qemu-bd2be1500337f0349f70802e4d8d43f5aca61477.tar.xz qemu-bd2be1500337f0349f70802e4d8d43f5aca61477.zip |
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: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'hw/microblaze')
-rw-r--r-- | hw/microblaze/petalogix_ml605_mmu.c | 2 | ||||
-rw-r--r-- | hw/microblaze/petalogix_s3adsp1800_mmu.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/hw/microblaze/petalogix_ml605_mmu.c b/hw/microblaze/petalogix_ml605_mmu.c index f61818b42b..ae7ff44423 100644 --- a/hw/microblaze/petalogix_ml605_mmu.c +++ b/hw/microblaze/petalogix_ml605_mmu.c @@ -30,7 +30,7 @@ #include "net/net.h" #include "hw/block/flash.h" #include "sysemu/sysemu.h" -#include "hw/arm/devices.h" +#include "hw/devices.h" #include "hw/boards.h" #include "hw/xilinx.h" #include "sysemu/blockdev.h" diff --git a/hw/microblaze/petalogix_s3adsp1800_mmu.c b/hw/microblaze/petalogix_s3adsp1800_mmu.c index eedd60e38c..7c258f03af 100644 --- a/hw/microblaze/petalogix_s3adsp1800_mmu.c +++ b/hw/microblaze/petalogix_s3adsp1800_mmu.c @@ -28,7 +28,7 @@ #include "net/net.h" #include "hw/block/flash.h" #include "sysemu/sysemu.h" -#include "hw/arm/devices.h" +#include "hw/devices.h" #include "hw/boards.h" #include "hw/xilinx.h" #include "sysemu/blockdev.h" |