diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2021-11-29 20:05:10 +0000 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2021-12-15 10:35:26 +0000 |
commit | 3508c0fac2b7055a341d30e67968506c7ed4f797 (patch) | |
tree | c65e559450d908ba96e94c6dd40c503aa746e7ad /hw/arm/vexpress.c | |
parent | d073949f9c2327eddfd9361aa1d94cd129ed4948 (diff) | |
download | qemu-3508c0fac2b7055a341d30e67968506c7ed4f797.zip qemu-3508c0fac2b7055a341d30e67968506c7ed4f797.tar.gz qemu-3508c0fac2b7055a341d30e67968506c7ed4f797.tar.bz2 |
hw/arm: Don't include qemu-common.h unnecessarily
A lot of C files in hw/arm include qemu-common.h when they don't
need anything from it. Drop the include lines.
omap1.c, pxa2xx.c and strongarm.c retain the include because they
use it for the prototype of qemu_get_timedate().
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Taylor Simpson <tsimpson@quicinc.com>
Reviewed-by: Yoshinori Sato <ysato@users.sourceforge.jp>
Message-id: 20211129200510.1233037-5-peter.maydell@linaro.org
Diffstat (limited to 'hw/arm/vexpress.c')
-rw-r--r-- | hw/arm/vexpress.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/hw/arm/vexpress.c b/hw/arm/vexpress.c index 58481c0..3e6d63c 100644 --- a/hw/arm/vexpress.c +++ b/hw/arm/vexpress.c @@ -23,7 +23,6 @@ #include "qemu/osdep.h" #include "qapi/error.h" -#include "qemu-common.h" #include "qemu/datadir.h" #include "cpu.h" #include "hw/sysbus.h" |