mirror of https://github.com/xemu-project/xemu.git
can_emu: Delete macros for non-existing typedef
CanBusClass doesn't exist. This will break when we automatically convert the code to use OBJECT_DEFINE_TYPE(). Delete the macros that reference the non-existing typedef. Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Reviewed-by: Daniel P. Berrangé <berrange@redhat.com> Signed-off-by: Eduardo Habkost <ehabkost@redhat.com> Tested-By: Roman Bolshakov <r.bolshakov@yadro.com> Message-Id: <20200825192110.3528606-23-ehabkost@redhat.com> Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
This commit is contained in:
parent
b13f9bdf31
commit
5c8b0f2cc7
|
@ -100,10 +100,6 @@ struct CanBusClientState {
|
|||
};
|
||||
|
||||
#define TYPE_CAN_BUS "can-bus"
|
||||
#define CAN_BUS_CLASS(klass) \
|
||||
OBJECT_CLASS_CHECK(CanBusClass, (klass), TYPE_CAN_BUS)
|
||||
#define CAN_BUS_GET_CLASS(obj) \
|
||||
OBJECT_GET_CLASS(CanBusClass, (obj), TYPE_CAN_BUS)
|
||||
#define CAN_BUS(obj) \
|
||||
OBJECT_CHECK(CanBusState, (obj), TYPE_CAN_BUS)
|
||||
|
||||
|
|
Loading…
Reference in New Issue