aboutsummaryrefslogtreecommitdiff
path: root/include/hw/intc
diff options
context:
space:
mode:
authorMarc-André Lureau <marcandre.lureau@redhat.com>2018-12-04 18:20:06 +0400
committerEduardo Habkost <ehabkost@redhat.com>2018-12-11 15:45:22 -0200
commitaa1b35b975d83a1ee3b5d1a1ae200a59ca44f8d2 (patch)
treef9c797fb1b6eaa12c268d32f83ba484df9b5c4a3 /include/hw/intc
parentef24052386d4a3c9cf10016cdf0f72b8a90728ae (diff)
downloadqemu-aa1b35b975d83a1ee3b5d1a1ae200a59ca44f8d2.zip
qemu-aa1b35b975d83a1ee3b5d1a1ae200a59ca44f8d2.tar.gz
qemu-aa1b35b975d83a1ee3b5d1a1ae200a59ca44f8d2.tar.bz2
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/intc')
-rw-r--r--include/hw/intc/intc.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/include/hw/intc/intc.h b/include/hw/intc/intc.h
index 27d9828..fb3e8e6 100644
--- a/include/hw/intc/intc.h
+++ b/include/hw/intc/intc.h
@@ -15,9 +15,7 @@
INTERFACE_CHECK(InterruptStatsProvider, (obj), \
TYPE_INTERRUPT_STATS_PROVIDER)
-typedef struct InterruptStatsProvider {
- Object parent;
-} InterruptStatsProvider;
+typedef struct InterruptStatsProvider InterruptStatsProvider;
typedef struct InterruptStatsProviderClass {
InterfaceClass parent;