8063396bf3
This converts existing DECLARE_INSTANCE_CHECKER usage to OBJECT_DECLARE_SIMPLE_TYPE when possible. $ ./scripts/codeconverter/converter.py -i \ --pattern=AddObjectDeclareSimpleType $(git grep -l '' -- '*.[ch]') Signed-off-by: Eduardo Habkost <ehabkost@redhat.com> Acked-by: Paul Durrant <paul@xen.org> Message-Id: <20200916182519.415636-6-ehabkost@redhat.com> Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
18 lines
314 B
C
18 lines
314 B
C
#ifndef CHIPIDEA_H
|
|
#define CHIPIDEA_H
|
|
|
|
#include "hw/usb/hcd-ehci.h"
|
|
#include "qom/object.h"
|
|
|
|
struct ChipideaState {
|
|
/*< private >*/
|
|
EHCISysBusState parent_obj;
|
|
|
|
MemoryRegion iomem[3];
|
|
};
|
|
|
|
#define TYPE_CHIPIDEA "usb-chipidea"
|
|
OBJECT_DECLARE_SIMPLE_TYPE(ChipideaState, CHIPIDEA)
|
|
|
|
#endif /* CHIPIDEA_H */
|