diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2013-04-09 15:26:55 +0100 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2013-04-15 15:16:01 +0200 |
commit | bd2be1500337f0349f70802e4d8d43f5aca61477 (patch) | |
tree | 298decbdd9122a354dc99258892920379ea4649b /hw/input | |
parent | e2ec3f976803b360c70d9ae2ba13852fa5d11665 (diff) | |
download | qemu-bd2be1500337f0349f70802e4d8d43f5aca61477.zip qemu-bd2be1500337f0349f70802e4d8d43f5aca61477.tar.gz qemu-bd2be1500337f0349f70802e4d8d43f5aca61477.tar.bz2 |
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/input')
-rw-r--r-- | hw/input/stellaris_input.c | 2 | ||||
-rw-r--r-- | hw/input/tsc2005.c | 2 | ||||
-rw-r--r-- | hw/input/tsc210x.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/hw/input/stellaris_input.c b/hw/input/stellaris_input.c index f83fc3f..4e40792 100644 --- a/hw/input/stellaris_input.c +++ b/hw/input/stellaris_input.c @@ -7,7 +7,7 @@ * This code is licensed under the GPL. */ #include "hw/hw.h" -#include "hw/arm/devices.h" +#include "hw/devices.h" #include "ui/console.h" typedef struct { diff --git a/hw/input/tsc2005.c b/hw/input/tsc2005.c index 34ee1fb..a771cd5 100644 --- a/hw/input/tsc2005.c +++ b/hw/input/tsc2005.c @@ -21,7 +21,7 @@ #include "hw/hw.h" #include "qemu/timer.h" #include "ui/console.h" -#include "hw/arm/devices.h" +#include "hw/devices.h" #define TSC_CUT_RESOLUTION(value, p) ((value) >> (16 - (p ? 12 : 10))) diff --git a/hw/input/tsc210x.c b/hw/input/tsc210x.c index e6c217c..9b854e7 100644 --- a/hw/input/tsc210x.c +++ b/hw/input/tsc210x.c @@ -24,7 +24,7 @@ #include "qemu/timer.h" #include "ui/console.h" #include "hw/arm/omap.h" /* For I2SCodec and uWireSlave */ -#include "hw/arm/devices.h" +#include "hw/devices.h" #define TSC_DATA_REGISTERS_PAGE 0x0 #define TSC_CONTROL_REGISTERS_PAGE 0x1 |