qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH 02/12] qapi-types.h doesn't really need to include q


From: Eduardo Habkost
Subject: [Qemu-devel] [PATCH 02/12] qapi-types.h doesn't really need to include qemu-common.h
Date: Tue, 16 Oct 2012 16:08:33 -0300

From: Igor Mammedov <address@hidden>

needed to prevent build breakage when CPU becomes a child of DeviceState

Signed-off-by: Igor Mammedov <address@hidden>
[ehabkost: include <stdbool.h> too]
Signed-off-by: Eduardo Habkost <address@hidden>
---
Yes, there is "changelog" data before the "---" mark, but I believe that
in this case they are important to indicate authorship and the scope of
the Signed-off-by lines (so they need to get into the git commit
message).
---
 scripts/qapi-types.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/scripts/qapi-types.py b/scripts/qapi-types.py
index 1b84834..6bc2391 100644
--- a/scripts/qapi-types.py
+++ b/scripts/qapi-types.py
@@ -273,7 +273,8 @@ fdecl.write(mcgen('''
 #ifndef %(guard)s
 #define %(guard)s
 
-#include "qemu-common.h"
+#include <stdbool.h>
+#include <stdint.h>
 
 ''',
                   guard=guardname(h_file)))
-- 
1.7.11.7




reply via email to

[Prev in Thread] Current Thread [Next in Thread]