Changes in uspace/drv/vhc/vhcd.h [6cb58e6:79ae36dd] in mainline


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/vhc/vhcd.h

    r6cb58e6 r79ae36dd  
    4141#include <usb/host/device_keeper.h>
    4242#include <usbhc_iface.h>
     43#include <async.h>
    4344
    4445#define NAME "vhc"
     
    4647typedef struct {
    4748        link_t link;
    48         int dev_phone;
     49        async_sess_t *dev_sess;
    4950        usbvirt_device_t *dev_local;
    5051        bool plugged;
     
    8283vhc_transfer_t *vhc_transfer_create(usb_address_t, usb_endpoint_t,
    8384    usb_direction_t, usb_transfer_type_t, ddf_fun_t *, void *);
    84 int vhc_virtdev_plug(vhc_data_t *, int, uintptr_t *);
     85int vhc_virtdev_plug(vhc_data_t *, async_sess_t *, uintptr_t *);
    8586int vhc_virtdev_plug_local(vhc_data_t *, usbvirt_device_t *, uintptr_t *);
    8687int vhc_virtdev_plug_hub(vhc_data_t *, usbvirt_device_t *, uintptr_t *);
Note: See TracChangeset for help on using the changeset viewer.