summaryrefslogtreecommitdiffstats
path: root/include/hw/ipmi
diff options
context:
space:
mode:
authorMarc-André Lureau2018-12-04 15:20:06 +0100
committerEduardo Habkost2018-12-11 18:45:22 +0100
commitaa1b35b975d83a1ee3b5d1a1ae200a59ca44f8d2 (patch)
treef9c797fb1b6eaa12c268d32f83ba484df9b5c4a3 /include/hw/ipmi
parenttests: qdev_prop_check_globals() doesn't return "all_used" (diff)
downloadqemu-aa1b35b975d83a1ee3b5d1a1ae200a59ca44f8d2.tar.gz
qemu-aa1b35b975d83a1ee3b5d1a1ae200a59ca44f8d2.tar.xz
qemu-aa1b35b975d83a1ee3b5d1a1ae200a59ca44f8d2.zip
qom: make interface types abstract
Interfaces don't have instance, let's make the interface type really abstract to avoid confusion. Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Reviewed-by: Igor Mammedov <imammedo@redhat.com> Reviewed-by: Eduardo Habkost <ehabkost@redhat.com> Message-Id: <20181204142023.15982-3-marcandre.lureau@redhat.com> Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Diffstat (limited to 'include/hw/ipmi')
-rw-r--r--include/hw/ipmi/ipmi.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/include/hw/ipmi/ipmi.h b/include/hw/ipmi/ipmi.h
index 0affe5a4d8..99661d2bf0 100644
--- a/include/hw/ipmi/ipmi.h
+++ b/include/hw/ipmi/ipmi.h
@@ -114,9 +114,7 @@ uint32_t ipmi_next_uuid(void);
#define IPMI_INTERFACE_GET_CLASS(class) \
OBJECT_GET_CLASS(IPMIInterfaceClass, (class), TYPE_IPMI_INTERFACE)
-typedef struct IPMIInterface {
- Object parent;
-} IPMIInterface;
+typedef struct IPMIInterface IPMIInterface;
typedef struct IPMIInterfaceClass {
InterfaceClass parent;