aboutsummaryrefslogtreecommitdiff
path: root/target
diff options
context:
space:
mode:
authorThomas Huth <thuth@redhat.com>2021-03-28 07:48:33 +0200
committerLaurent Vivier <laurent@vivier.eu>2021-05-02 17:24:50 +0200
commit19f4ed3652e0868dd840d3bfe70cfa2cf41936be (patch)
tree376af2da9435beca7aa19be806c7f42b2bbaa29d /target
parente924921f5cea55d20a90f1d8d7239d35427bef04 (diff)
downloadqemu-19f4ed3652e0868dd840d3bfe70cfa2cf41936be.zip
qemu-19f4ed3652e0868dd840d3bfe70cfa2cf41936be.tar.gz
qemu-19f4ed3652e0868dd840d3bfe70cfa2cf41936be.tar.bz2
hw: Do not include qemu/log.h if it is not necessary
Many files include qemu/log.h without needing it. Remove the superfluous include statements. Signed-off-by: Thomas Huth <thuth@redhat.com> Reviewed-by: Alistair Francis <alistair.francis@wdc.com> Message-Id: <20210328054833.2351597-1-thuth@redhat.com> Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Diffstat (limited to 'target')
-rw-r--r--target/arm/op_helper.c1
-rw-r--r--target/hexagon/cpu.c1
-rw-r--r--target/hexagon/decode.c1
-rw-r--r--target/hexagon/genptr.c1
-rw-r--r--target/lm32/lm32-semi.c1
-rw-r--r--target/riscv/op_helper.c1
-rw-r--r--target/s390x/interrupt.c1
7 files changed, 0 insertions, 7 deletions
diff --git a/target/arm/op_helper.c b/target/arm/op_helper.c
index 65cb37d..78b831f 100644
--- a/target/arm/op_helper.c
+++ b/target/arm/op_helper.c
@@ -17,7 +17,6 @@
* License along with this library; if not, see <http://www.gnu.org/licenses/>.
*/
#include "qemu/osdep.h"
-#include "qemu/log.h"
#include "qemu/main-loop.h"
#include "cpu.h"
#include "exec/helper-proto.h"
diff --git a/target/hexagon/cpu.c b/target/hexagon/cpu.c
index b0b3040..543fceb 100644
--- a/target/hexagon/cpu.c
+++ b/target/hexagon/cpu.c
@@ -16,7 +16,6 @@
*/
#include "qemu/osdep.h"
-#include "qemu/log.h"
#include "qemu/qemu-print.h"
#include "cpu.h"
#include "internal.h"
diff --git a/target/hexagon/decode.c b/target/hexagon/decode.c
index c9bacaa..9bcc8c9 100644
--- a/target/hexagon/decode.c
+++ b/target/hexagon/decode.c
@@ -16,7 +16,6 @@
*/
#include "qemu/osdep.h"
-#include "qemu/log.h"
#include "iclass.h"
#include "attribs.h"
#include "genptr.h"
diff --git a/target/hexagon/genptr.c b/target/hexagon/genptr.c
index 7481f4c..cea1f22 100644
--- a/target/hexagon/genptr.c
+++ b/target/hexagon/genptr.c
@@ -17,7 +17,6 @@
#define QEMU_GENERATE
#include "qemu/osdep.h"
-#include "qemu/log.h"
#include "cpu.h"
#include "internal.h"
#include "tcg/tcg-op.h"
diff --git a/target/lm32/lm32-semi.c b/target/lm32/lm32-semi.c
index 6a11a62..661a770 100644
--- a/target/lm32/lm32-semi.c
+++ b/target/lm32/lm32-semi.c
@@ -13,7 +13,6 @@
#include "qemu/osdep.h"
#include "cpu.h"
#include "exec/helper-proto.h"
-#include "qemu/log.h"
#include "exec/softmmu-semi.h"
enum {
diff --git a/target/riscv/op_helper.c b/target/riscv/op_helper.c
index 1eddcb9..f0bbd73 100644
--- a/target/riscv/op_helper.c
+++ b/target/riscv/op_helper.c
@@ -18,7 +18,6 @@
*/
#include "qemu/osdep.h"
-#include "qemu/log.h"
#include "cpu.h"
#include "qemu/main-loop.h"
#include "exec/exec-all.h"
diff --git a/target/s390x/interrupt.c b/target/s390x/interrupt.c
index 4cdbbc8..9b4d08f 100644
--- a/target/s390x/interrupt.c
+++ b/target/s390x/interrupt.c
@@ -8,7 +8,6 @@
*/
#include "qemu/osdep.h"
-#include "qemu/log.h"
#include "cpu.h"
#include "kvm_s390x.h"
#include "internal.h"