mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 00:03:54 -06:00
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>
This commit is contained in:
parent
c821774a3b
commit
1ff5adfa5b
11 changed files with 22 additions and 55 deletions
|
@ -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 */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue