summaryrefslogtreecommitdiffstats
path: root/include/hw/boards.h
diff options
context:
space:
mode:
authorDavid Gibson2015-12-03 07:34:38 +0100
committerDavid Gibson2016-01-11 05:29:05 +0100
commit877f8931b99e2377a180fd43a1e5fc2b707e9c52 (patch)
tree916f01d40fb4ee82035a2546c9d229170aa8ce0b /include/hw/boards.h
parentpseries: Remove versions from mc->desc (diff)
downloadqemu-877f8931b99e2377a180fd43a1e5fc2b707e9c52.tar.gz
qemu-877f8931b99e2377a180fd43a1e5fc2b707e9c52.tar.xz
qemu-877f8931b99e2377a180fd43a1e5fc2b707e9c52.zip
Move SET_MACHINE_COMPAT macro to boards.h
pc.h defines a SET_MACHINE_COMPAT macro to make setting up compat_props for the various PC machine versions less verbose. There's nothing inherently PC specific about it, though, so move it to boards.h where other versioned machine types (like pseries-*) can use it. While we're doing that, change it's indentation to be a bit more regular. Signed-off-by: David Gibson <david@gibson.dropbear.id.au> Reviewed-by: Thomas Huth <thuth@redhat.com> Reviewed-by: Eduardo Habkost <ehabkost@redhat.com> Reviewed-by: Alexey Kardashevskiy <aik@ozlabs.ru>
Diffstat (limited to 'include/hw/boards.h')
-rw-r--r--include/hw/boards.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/include/hw/boards.h b/include/hw/boards.h
index 051db5ed25..0f30959e2e 100644
--- a/include/hw/boards.h
+++ b/include/hw/boards.h
@@ -157,4 +157,13 @@ struct MachineState {
} \
machine_init(machine_initfn##_register_types)
+#define SET_MACHINE_COMPAT(m, COMPAT) \
+ do { \
+ static GlobalProperty props[] = { \
+ COMPAT \
+ { /* end of list */ } \
+ }; \
+ (m)->compat_props = props; \
+ } while (0)
+
#endif