Changes in uspace/app/mkbd/main.c [e540424a:07b7c48] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/mkbd/main.c
re540424a r07b7c48 45 45 #include <loc.h> 46 46 #include <usb/dev/hub.h> 47 #include <usb hid_iface.h>47 #include <usb/hid/iface.h> 48 48 #include <usb/dev/pipes.h> 49 49 #include <async.h> … … 123 123 free(desc); 124 124 125 return rc; 125 if (rc != EOK) { 126 free(desc); 127 return rc; 128 } 129 130 return EOK; 126 131 } 127 132 … … 226 231 } 227 232 228 async_sess_t *sess = devman_device_connect(dev_handle, 0); 233 async_sess_t *sess = devman_device_connect(EXCHANGE_SERIALIZE, 234 dev_handle, 0); 229 235 if (!sess) { 230 236 printf(NAME ": failed to connect to the device (handle %"
Note:
See TracChangeset
for help on using the changeset viewer.