]> git.ipfire.org Git - thirdparty/qemu.git/commitdiff
qom: move include files to include/qom/
authorPaolo Bonzini <pbonzini@redhat.com>
Mon, 17 Dec 2012 17:19:50 +0000 (18:19 +0100)
committerPaolo Bonzini <pbonzini@redhat.com>
Wed, 19 Dec 2012 07:31:32 +0000 (08:31 +0100)
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
27 files changed:
hw/qdev-core.h
hw/stream.h
include/qemu/rng-random.h
include/qemu/rng.h
include/qom/cpu.h [moved from include/qemu/cpu.h with 99% similarity]
include/qom/object.h [moved from include/qemu/object.h with 100% similarity]
include/qom/qom-qobject.h [moved from include/qemu/qom-qobject.h with 97% similarity]
qmp.c
qom/container.c
qom/cpu.c
qom/object.c
qom/qom-qobject.c
target-alpha/cpu-qom.h
target-arm/cpu-qom.h
target-cris/cpu-qom.h
target-i386/cpu-qom.h
target-lm32/cpu-qom.h
target-m68k/cpu-qom.h
target-microblaze/cpu-qom.h
target-mips/cpu-qom.h
target-openrisc/cpu.h
target-ppc/cpu-qom.h
target-s390x/cpu-qom.h
target-sh4/cpu-qom.h
target-sparc/cpu-qom.h
target-unicore32/cpu-qom.h
target-xtensa/cpu-qom.h

index 506977c1098998fa490d534be96664911224b0b1..93a3a2a7bcb9c05f094b5fddb221949e47a19870 100644 (file)
@@ -4,7 +4,7 @@
 #include "qemu-queue.h"
 #include "qemu-option.h"
 #include "qemu-types.h"
-#include "qemu/object.h"
+#include "qom/object.h"
 #include "hw/irq.h"
 #include "qapi/error.h"
 
index 21123a9089410974d4aef094ea6633baa6b9f640..f6137d6e258d89a2821c622ac314e9b3b6cf86b9 100644 (file)
@@ -2,7 +2,7 @@
 #define STREAM_H 1
 
 #include "qemu-common.h"
-#include "qemu/object.h"
+#include "qom/object.h"
 
 /* stream slave. Used until qdev provides a generic way.  */
 #define TYPE_STREAM_SLAVE "stream-slave"
index 6249290cc45f9078269146d84aa3c2c9d2febb11..4332772a24b1ff346f29c6e87eafe5278b9c4964 100644 (file)
@@ -12,7 +12,7 @@
 #ifndef QEMU_RNG_RANDOM_H
 #define QEMU_RNG_RANDOM_H
 
-#include "qemu/object.h"
+#include "qom/object.h"
 
 #define TYPE_RNG_RANDOM "rng-random"
 #define RNG_RANDOM(obj) OBJECT_CHECK(RndRandom, (obj), TYPE_RNG_RANDOM)
index 37912971e0ecfd53f27787e32cb4dcc61a134fad..509abd023d1d23a3dc778f2c51110d4d282c665c 100644 (file)
@@ -13,7 +13,7 @@
 #ifndef QEMU_RNG_H
 #define QEMU_RNG_H
 
-#include "qemu/object.h"
+#include "qom/object.h"
 #include "qemu-common.h"
 #include "qapi/error.h"
 
similarity index 99%
rename from include/qemu/cpu.h
rename to include/qom/cpu.h
index 61b76982f1442771e338d22ed43b17b4060b5415..9682dd59edc817a31c9a764810ca404d0f7a5853 100644 (file)
@@ -20,7 +20,7 @@
 #ifndef QEMU_CPU_H
 #define QEMU_CPU_H
 
-#include "qemu/object.h"
+#include "qom/object.h"
 #include "qemu-thread.h"
 
 /**
similarity index 100%
rename from include/qemu/object.h
rename to include/qom/object.h
similarity index 97%
rename from include/qemu/qom-qobject.h
rename to include/qom/qom-qobject.h
index f9dff12f1179572899e51e9b4958d5b25bc47c72..77cd717e3faf465f40fbcf9fb55ea2a5e1409e6d 100644 (file)
@@ -13,7 +13,7 @@
 #ifndef QEMU_QOM_QOBJECT_H
 #define QEMU_QOM_QOBJECT_H
 
-#include "qemu/object.h"
+#include "qom/object.h"
 
 /*
  * object_property_get_qobject:
diff --git a/qmp.c b/qmp.c
index e873f0a0dc211782cad387e3de079d235f185887..5b3a5d7d038a88920686f0682747e66fade8c737 100644 (file)
--- a/qmp.c
+++ b/qmp.c
@@ -23,7 +23,7 @@
 #include "arch_init.h"
 #include "hw/qdev.h"
 #include "blockdev.h"
-#include "qemu/qom-qobject.h"
+#include "qom/qom-qobject.h"
 
 NameInfo *qmp_query_name(Error **errp)
 {
index 4ca8b5cba329aa38399628c72de5a0207ceff8f6..ceb0f0186d20fcb03c36a1b60c83be1d99f2405a 100644 (file)
@@ -10,7 +10,7 @@
  * See the COPYING file in the top-level directory.
  */
 
-#include "qemu/object.h"
+#include "qom/object.h"
 #include "module.h"
 #include <assert.h>
 
index 5b360469c5aea90fad44db1b455c14c5e62d5a1c..d4d436f80a4c5c9355fbf57bada59f120ac047b3 100644 (file)
--- a/qom/cpu.c
+++ b/qom/cpu.c
@@ -18,7 +18,7 @@
  * <http://www.gnu.org/licenses/gpl-2.0.html>
  */
 
-#include "qemu/cpu.h"
+#include "qom/cpu.h"
 #include "qemu-common.h"
 
 void cpu_reset(CPUState *cpu)
index 932f8b30de2ef9ce5c6feb1f519ed2af4eb63375..351b88c817b5222e87d8544e8673c02278766b2f 100644 (file)
@@ -10,7 +10,7 @@
  * See the COPYING file in the top-level directory.
  */
 
-#include "qemu/object.h"
+#include "qom/object.h"
 #include "qemu-common.h"
 #include "qapi/visitor.h"
 #include "qapi/string-input-visitor.h"
@@ -19,7 +19,7 @@
 
 /* TODO: replace QObject with a simpler visitor to avoid a dependency
  * of the QOM core on QObject?  */
-#include "qemu/qom-qobject.h"
+#include "qom/qom-qobject.h"
 #include "qapi/qmp/qobject.h"
 #include "qapi/qmp/qbool.h"
 #include "qapi/qmp/qint.h"
index f0fa652157da83572bc0c8056e39f5b65fd6786c..6384b8e98ce316fa534c32b36b602c739482e023 100644 (file)
@@ -10,8 +10,8 @@
  */
 
 #include "qemu-common.h"
-#include "qemu/object.h"
-#include "qemu/qom-qobject.h"
+#include "qom/object.h"
+#include "qom/qom-qobject.h"
 #include "qapi/visitor.h"
 #include "qapi/qmp-input-visitor.h"
 #include "qapi/qmp-output-visitor.h"
index 6b4ca6d1d19ae77283127dfbc6dbae7370dcc92e..f2414f7e4f25a711d58a4aed67d0980b4ac09035 100644 (file)
@@ -20,7 +20,7 @@
 #ifndef QEMU_ALPHA_CPU_QOM_H
 #define QEMU_ALPHA_CPU_QOM_H
 
-#include "qemu/cpu.h"
+#include "qom/cpu.h"
 #include "cpu.h"
 
 #define TYPE_ALPHA_CPU "alpha-cpu"
index beabf9a0a9c3936281d3d0b99ae0caea0413eb08..0f455c40ff470993353cb6e1235df2910c13a8e7 100644 (file)
@@ -20,7 +20,7 @@
 #ifndef QEMU_ARM_CPU_QOM_H
 #define QEMU_ARM_CPU_QOM_H
 
-#include "qemu/cpu.h"
+#include "qom/cpu.h"
 
 #define TYPE_ARM_CPU "arm-cpu"
 
index d0e5f04f78ba662de239ace0caaa4b45ba2495dc..41ab9b2fa5e19edd97e9b77162fc8ba667394987 100644 (file)
@@ -20,7 +20,7 @@
 #ifndef QEMU_CRIS_CPU_QOM_H
 #define QEMU_CRIS_CPU_QOM_H
 
-#include "qemu/cpu.h"
+#include "qom/cpu.h"
 
 #define TYPE_CRIS_CPU "cris-cpu"
 
index 3a7bc6aef4e06555083d9af0d733ac4ef76cac0c..332916a1857e178ad72880200e0c4c4e8a7f262c 100644 (file)
@@ -20,7 +20,7 @@
 #ifndef QEMU_I386_CPU_QOM_H
 #define QEMU_I386_CPU_QOM_H
 
-#include "qemu/cpu.h"
+#include "qom/cpu.h"
 #include "cpu.h"
 #include "qapi/error.h"
 
index 4ae2eddafbcd873b1ab7284ada1d189f2f59e3b1..400cdbd554a8f78b2d397f206ac3a881a34beec8 100644 (file)
@@ -20,7 +20,7 @@
 #ifndef QEMU_LM32_CPU_QOM_H
 #define QEMU_LM32_CPU_QOM_H
 
-#include "qemu/cpu.h"
+#include "qom/cpu.h"
 #include "cpu.h"
 
 #define TYPE_LM32_CPU "lm32-cpu"
index 805786b04d4cb7415d48d51ba089c170b21c5e87..170daa7c9623a14ed24cb150085fb03579e9007b 100644 (file)
@@ -20,7 +20,7 @@
 #ifndef QEMU_M68K_CPU_QOM_H
 #define QEMU_M68K_CPU_QOM_H
 
-#include "qemu/cpu.h"
+#include "qom/cpu.h"
 
 #define TYPE_M68K_CPU "m68k-cpu"
 
index 4b23303b6dd8a986f2c2bf4665e038cb815e60bf..f75549dc2265412ded9a0f461b798d53fac3f242 100644 (file)
@@ -20,7 +20,7 @@
 #ifndef QEMU_MICROBLAZE_CPU_QOM_H
 #define QEMU_MICROBLAZE_CPU_QOM_H
 
-#include "qemu/cpu.h"
+#include "qom/cpu.h"
 
 #define TYPE_MICROBLAZE_CPU "microblaze-cpu"
 
index 6e2237123aa1160fae0ba569c83c15c411f202f1..2a4b812402331d725e3016d2e12f554386398c1a 100644 (file)
@@ -20,7 +20,7 @@
 #ifndef QEMU_MIPS_CPU_QOM_H
 #define QEMU_MIPS_CPU_QOM_H
 
-#include "qemu/cpu.h"
+#include "qom/cpu.h"
 
 #ifdef TARGET_MIPS64
 #define TYPE_MIPS_CPU "mips64-cpu"
index 8dc56c2873b08b23f3040ea9ea88e2fcf487ce75..876b386a3c34b3494d367e2c040598d2a18fe295 100644 (file)
@@ -32,7 +32,7 @@ struct OpenRISCCPU;
 #include "qemu-common.h"
 #include "exec/cpu-defs.h"
 #include "softfloat.h"
-#include "qemu/cpu.h"
+#include "qom/cpu.h"
 #include "qapi/error.h"
 
 #define TYPE_OPENRISC_CPU "or32-cpu"
index fef6f95a04d54476aa632b63dd6a4c047c14bb11..fb6b5a4119e800b06eae865255358edd59714b18 100644 (file)
@@ -20,7 +20,7 @@
 #ifndef QEMU_PPC_CPU_QOM_H
 #define QEMU_PPC_CPU_QOM_H
 
-#include "qemu/cpu.h"
+#include "qom/cpu.h"
 #include "cpu.h"
 
 #ifdef TARGET_PPC64
index 6fa55a80a590a181d0fa19bfd1d8dcbd31635df0..d54e4a2ee2ae8c86ff4211e43e6e90537cffe8a4 100644 (file)
@@ -20,7 +20,7 @@
 #ifndef QEMU_S390_CPU_QOM_H
 #define QEMU_S390_CPU_QOM_H
 
-#include "qemu/cpu.h"
+#include "qom/cpu.h"
 #include "cpu.h"
 
 #define TYPE_S390_CPU "s390-cpu"
index c41164aa221abe7754b80b0cf1e010714a0e47fa..09573c9c34f6e5a848c058914477bd48f8c1bbca 100644 (file)
@@ -20,7 +20,7 @@
 #ifndef QEMU_SUPERH_CPU_QOM_H
 #define QEMU_SUPERH_CPU_QOM_H
 
-#include "qemu/cpu.h"
+#include "qom/cpu.h"
 
 #define TYPE_SUPERH_CPU "superh-cpu"
 
index 3d3ac0fcefbe00d77f40c8853b0b76ed281ad97c..2a738ae360e3c4173dcc8456687fa6f4f5831d71 100644 (file)
@@ -20,7 +20,7 @@
 #ifndef QEMU_SPARC_CPU_QOM_H
 #define QEMU_SPARC_CPU_QOM_H
 
-#include "qemu/cpu.h"
+#include "qom/cpu.h"
 #include "cpu.h"
 
 #ifdef TARGET_SPARC64
index 342d85e39b641f6c5f75c0916b2bed4f7eb397e5..fe40b2d6a8a48e01b1eafbb0d9d9de66dd7c99c6 100644 (file)
@@ -11,7 +11,7 @@
 #ifndef QEMU_UC32_CPU_QOM_H
 #define QEMU_UC32_CPU_QOM_H
 
-#include "qemu/cpu.h"
+#include "qom/cpu.h"
 #include "cpu.h"
 
 #define TYPE_UNICORE32_CPU "unicore32-cpu"
index 1fd2f274a1de92a7629af3848b89e7c4db8e4a91..e344a9aa79bdc8928c432443cb0bf0ef814d8d1b 100644 (file)
@@ -29,7 +29,7 @@
 #ifndef QEMU_XTENSA_CPU_QOM_H
 #define QEMU_XTENSA_CPU_QOM_H
 
-#include "qemu/cpu.h"
+#include "qom/cpu.h"
 #include "cpu.h"
 
 #define TYPE_XTENSA_CPU "xtensa-cpu"