diff options
author | Eduardo Habkost <ehabkost@redhat.com> | 2020-08-31 17:07:40 -0400 |
---|---|---|
committer | Eduardo Habkost <ehabkost@redhat.com> | 2020-09-09 09:27:11 -0400 |
commit | 1ff5adfa5bad905e36bb7eff5e436e26793f111f (patch) | |
tree | f41ea648acc321c7839b32ed2797946bce0a7ee3 /include/sysemu | |
parent | c821774a3b7ca991d684c3966171d8657f842aea (diff) |
Use OBJECT_DECLARE_SIMPLE_TYPE when possible
Generated using:
$ ./scripts/codeconverter/converter.py -i \
--pattern=ObjectDeclareType $(git grep -l '' -- '*.[ch]')
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Message-Id: <20200831210740.126168-19-ehabkost@redhat.com>
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Diffstat (limited to 'include/sysemu')
-rw-r--r-- | include/sysemu/vhost-user-backend.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/include/sysemu/vhost-user-backend.h b/include/sysemu/vhost-user-backend.h index 76ca06cf40..23205edeb8 100644 --- a/include/sysemu/vhost-user-backend.h +++ b/include/sysemu/vhost-user-backend.h @@ -22,13 +22,10 @@ #include "io/channel.h" #define TYPE_VHOST_USER_BACKEND "vhost-user-backend" -OBJECT_DECLARE_TYPE(VhostUserBackend, VhostUserBackendClass, - vhost_user_backend, VHOST_USER_BACKEND) +OBJECT_DECLARE_SIMPLE_TYPE(VhostUserBackend, vhost_user_backend, + VHOST_USER_BACKEND, ObjectClass) -struct VhostUserBackendClass { - ObjectClass parent_class; -}; struct VhostUserBackend { /* private */ |