diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2009-12-08 13:11:33 +0100 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-12-12 07:59:40 -0600 |
commit | 458fb6792d834474c6b289738b6bf9601fad87ab (patch) | |
tree | 52267a01f5e1349ff53f0ce514efbdd0263b0c7f /hw/boards.h | |
parent | 4d6e3ac5d411c461d0fb4b1cd2ace854963c9e30 (diff) | |
download | qemu-458fb6792d834474c6b289738b6bf9601fad87ab.zip qemu-458fb6792d834474c6b289738b6bf9601fad87ab.tar.gz qemu-458fb6792d834474c6b289738b6bf9601fad87ab.tar.bz2 |
qdev: make compat stuff more generic
This patch renames the compat properties into global properties and
makes them more generic. The compatibility stuff is only one of
multiple possible users now.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw/boards.h')
-rw-r--r-- | hw/boards.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/boards.h b/hw/boards.h index d889341..7a0f20f 100644 --- a/hw/boards.h +++ b/hw/boards.h @@ -20,7 +20,7 @@ typedef struct QEMUMachine { int use_scsi; int max_cpus; int is_default; - CompatProperty *compat_props; + GlobalProperty *compat_props; struct QEMUMachine *next; } QEMUMachine; |