mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 17:23:56 -06:00
usb: zap pdev from usbport
It isn't needed any more. Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
This commit is contained in:
parent
70d31cb22c
commit
ace1318b8e
6 changed files with 6 additions and 8 deletions
3
hw/usb.h
3
hw/usb.h
|
@ -244,7 +244,6 @@ struct USBPort {
|
|||
char path[16];
|
||||
USBPortOps *ops;
|
||||
void *opaque;
|
||||
USBDevice *pdev;
|
||||
int index; /* internal port index, may be used with the opaque */
|
||||
QTAILQ_ENTRY(USBPort) next;
|
||||
};
|
||||
|
@ -355,7 +354,7 @@ USBDevice *usb_create(USBBus *bus, const char *name);
|
|||
USBDevice *usb_create_simple(USBBus *bus, const char *name);
|
||||
USBDevice *usbdevice_create(const char *cmdline);
|
||||
void usb_register_port(USBBus *bus, USBPort *port, void *opaque, int index,
|
||||
USBDevice *pdev, USBPortOps *ops, int speedmask);
|
||||
USBPortOps *ops, int speedmask);
|
||||
void usb_port_location(USBPort *downstream, USBPort *upstream, int portnr);
|
||||
void usb_unregister_port(USBBus *bus, USBPort *port);
|
||||
int usb_device_attach(USBDevice *dev);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue