Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/bus/usb/vhc/conndev.c

    rf6577d9 r56fd7cf  
    3838#include <ddf/driver.h>
    3939#include <usbvirt/ipc.h>
    40 #include <usb/debug.h>
    4140#include <async.h>
    42 
    43 #include "vhcd.h"
     41#include "conn.h"
    4442
    4543static fibril_local uintptr_t plugged_device_handle = 0;
     
    9694    ipc_call_t *icall)
    9795{
    98         vhc_data_t *vhc = ddf_fun_data_get(fun);
     96        vhc_data_t *vhc = ddf_dev_data_get(ddf_fun_get_dev(fun));
    9997       
    10098        async_sess_t *callback =
     
    127125void on_client_close(ddf_fun_t *fun)
    128126{
    129         vhc_data_t *vhc = ddf_fun_data_get(fun);
     127        vhc_data_t *vhc = ddf_dev_data_get(ddf_fun_get_dev(fun));
    130128
    131129        if (plugged_device_handle != 0) {
Note: See TracChangeset for help on using the changeset viewer.