diff options
author | Peter Maydell | 2021-11-29 21:05:09 +0100 |
---|---|---|
committer | Peter Maydell | 2021-12-15 11:35:26 +0100 |
commit | d073949f9c2327eddfd9361aa1d94cd129ed4948 (patch) | |
tree | ee9149e513f753222826aba1a0ae63b6f14079c2 /target/rx | |
parent | target/hexagon/cpu.h: don't include qemu-common.h (diff) | |
download | qemu-d073949f9c2327eddfd9361aa1d94cd129ed4948.tar.gz qemu-d073949f9c2327eddfd9361aa1d94cd129ed4948.tar.xz qemu-d073949f9c2327eddfd9361aa1d94cd129ed4948.zip |
target/rx/cpu.h: Don't include qemu-common.h
The qemu-common.h header is not supposed to be included from any
other header files, only from .c files (as documented in a comment at
the start of it).
Nothing actually relies on target/rx/cpu.h including it, so we can
just drop the include.
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-4-peter.maydell@linaro.org
Diffstat (limited to 'target/rx')
-rw-r--r-- | target/rx/cpu.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/target/rx/cpu.h b/target/rx/cpu.h index 4ac71aec37..657db84ef0 100644 --- a/target/rx/cpu.h +++ b/target/rx/cpu.h @@ -20,7 +20,6 @@ #define RX_CPU_H #include "qemu/bitops.h" -#include "qemu-common.h" #include "hw/registerfields.h" #include "cpu-qom.h" |