8110fa1d94
Generated using: $ ./scripts/codeconverter/converter.py -i \ --pattern=TypeCheckMacro $(git grep -l '' -- '*.[ch]') Reviewed-by: Daniel P. Berrangé <berrange@redhat.com> Reviewed-by: Juan Quintela <quintela@redhat.com> Message-Id: <20200831210740.126168-12-ehabkost@redhat.com> Reviewed-by: Juan Quintela <quintela@redhat.com> Message-Id: <20200831210740.126168-13-ehabkost@redhat.com> Message-Id: <20200831210740.126168-14-ehabkost@redhat.com> Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
21 lines
404 B
C
21 lines
404 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;
|
|
};
|
|
typedef struct PPCE500CCSRState PPCE500CCSRState;
|
|
|
|
#define TYPE_CCSR "e500-ccsr"
|
|
DECLARE_INSTANCE_CHECKER(PPCE500CCSRState, CCSR,
|
|
TYPE_CCSR)
|
|
|
|
#endif /* E500_CCSR_H */
|