Changes in uspace/drv/bus/usb/vhc/devconn.c [b7fd2a0:58563585] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/vhc/devconn.c
rb7fd2a0 r58563585 49 49 } 50 50 51 static errno_t vhc_virtdev_plug_generic(vhc_data_t *vhc,51 static int vhc_virtdev_plug_generic(vhc_data_t *vhc, 52 52 async_sess_t *sess, usbvirt_device_t *virtdev, 53 53 uintptr_t *handle, bool connect, usb_address_t address) … … 85 85 } 86 86 87 errno_t vhc_virtdev_plug(vhc_data_t *vhc, async_sess_t *sess, uintptr_t *handle)87 int vhc_virtdev_plug(vhc_data_t *vhc, async_sess_t *sess, uintptr_t *handle) 88 88 { 89 89 return vhc_virtdev_plug_generic(vhc, sess, NULL, handle, true, 0); 90 90 } 91 91 92 errno_t vhc_virtdev_plug_local(vhc_data_t *vhc, usbvirt_device_t *dev, uintptr_t *handle)92 int vhc_virtdev_plug_local(vhc_data_t *vhc, usbvirt_device_t *dev, uintptr_t *handle) 93 93 { 94 94 return vhc_virtdev_plug_generic(vhc, NULL, dev, handle, true, 0); 95 95 } 96 96 97 errno_t vhc_virtdev_plug_hub(vhc_data_t *vhc, usbvirt_device_t *dev,97 int vhc_virtdev_plug_hub(vhc_data_t *vhc, usbvirt_device_t *dev, 98 98 uintptr_t *handle, usb_address_t address) 99 99 {
Note:
See TracChangeset
for help on using the changeset viewer.