hw/arm/sbsa-ref: Remove unnecessary check for secure_sysmem == NULL
[qemu/ar7.git] / tests / libqos / usb.h
blobc506418a13968be5d9914e7a24eb2256bf276b01
1 #ifndef LIBQOS_USB_H
2 #define LIBQOS_USB_H
4 #include "libqos/pci-pc.h"
6 struct qhc {
7 QPCIDevice *dev;
8 QPCIBar bar;
9 };
11 void qusb_pci_init_one(QPCIBus *pcibus, struct qhc *hc,
12 uint32_t devfn, int bar);
13 void uhci_port_test(struct qhc *hc, int port, uint16_t expect);
14 void uhci_deinit(struct qhc *hc);
16 void usb_test_hotplug(const char *bus_name, const char *port,
17 void (*port_check)(void));
18 #endif