1#ifndef CHIPIDEA_H 2#define CHIPIDEA_H 3 4#include "hw/usb/hcd-ehci.h" 5#include "qom/object.h" 6 7struct ChipideaState { 8 /*< private >*/ 9 EHCISysBusState parent_obj; 10 11 MemoryRegion iomem[3]; 12}; 13 14#define TYPE_CHIPIDEA "usb-chipidea" 15OBJECT_DECLARE_SIMPLE_TYPE(ChipideaState, CHIPIDEA) 16 17#endif /* CHIPIDEA_H */ 18