]> Git Repo - qemu.git/blob - hw/ppc/e500-ccsr.h
ppc: convert g_new(qemu_irq usages to g_new0
[qemu.git] / hw / ppc / e500-ccsr.h
1 #ifndef E500_CCSR_H
2 #define E500_CCSR_H
3
4 #include "hw/sysbus.h"
5
6 typedef struct PPCE500CCSRState {
7     /*< private >*/
8     SysBusDevice parent;
9     /*< public >*/
10
11     MemoryRegion ccsr_space;
12 } PPCE500CCSRState;
13
14 #define TYPE_CCSR "e500-ccsr"
15 #define CCSR(obj) OBJECT_CHECK(PPCE500CCSRState, (obj), TYPE_CCSR)
16
17 #endif /* E500_CCSR_H */
This page took 0.024551 seconds and 4 git commands to generate.