aboutsummaryrefslogtreecommitdiff
path: root/include/hw
diff options
context:
space:
mode:
authorPeter Maydell <peter.maydell@linaro.org>2021-11-29 20:05:07 +0000
committerPeter Maydell <peter.maydell@linaro.org>2021-12-15 10:35:26 +0000
commit9cafc0735f5451dd6c8845f2a5c2c73bd7a7580c (patch)
treea4e353609aa287777c00fd4f807de810610d5c00 /include/hw
parente0e875a68a1cc699658a40b8449267c7460de60f (diff)
downloadqemu-9cafc0735f5451dd6c8845f2a5c2c73bd7a7580c.zip
qemu-9cafc0735f5451dd6c8845f2a5c2c73bd7a7580c.tar.gz
qemu-9cafc0735f5451dd6c8845f2a5c2c73bd7a7580c.tar.bz2
include/hw/i386: Don't include qemu-common.h in .h files
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). include/hw/i386/x86.h and include/hw/i386/microvm.h break this rule. In fact, the include is not required at all, so we can just drop it from both files. 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> Message-id: 20211129200510.1233037-2-peter.maydell@linaro.org
Diffstat (limited to 'include/hw')
-rw-r--r--include/hw/i386/microvm.h1
-rw-r--r--include/hw/i386/x86.h1
2 files changed, 0 insertions, 2 deletions
diff --git a/include/hw/i386/microvm.h b/include/hw/i386/microvm.h
index 4d9c732..efcbd92 100644
--- a/include/hw/i386/microvm.h
+++ b/include/hw/i386/microvm.h
@@ -18,7 +18,6 @@
#ifndef HW_I386_MICROVM_H
#define HW_I386_MICROVM_H
-#include "qemu-common.h"
#include "exec/hwaddr.h"
#include "qemu/notify.h"
diff --git a/include/hw/i386/x86.h b/include/hw/i386/x86.h
index bb1cfb8..a145a30 100644
--- a/include/hw/i386/x86.h
+++ b/include/hw/i386/x86.h
@@ -17,7 +17,6 @@
#ifndef HW_I386_X86_H
#define HW_I386_X86_H
-#include "qemu-common.h"
#include "exec/hwaddr.h"
#include "qemu/notify.h"