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>
19 lines
320 B
C
19 lines
320 B
C
#ifndef E500_CCSR_H
|
|
#define E500_CCSR_H
|
|
|
|
#include "hw/sysbus.h"
|
|
#include "qom/object.h"
|
|
|
|
struct PPCE500CCSRState {
|
|
/*< private >*/
|
|
SysBusDevice parent;
|
|
/*< public >*/
|
|
|
|
MemoryRegion ccsr_space;
|
|
};
|
|
|
|
#define TYPE_CCSR "e500-ccsr"
|
|
OBJECT_DECLARE_SIMPLE_TYPE(PPCE500CCSRState, CCSR)
|
|
|
|
#endif /* E500_CCSR_H */
|