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