Changes in / [f3f9733:2176ed6] in mainline
- Location:
- uspace
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified uspace/app/mkbd/main.c ¶
rf3f9733 r2176ed6 213 213 214 214 char *devpath = argv[1]; 215 //const char *devpath = "/hw/pci0/00:06.0/ohci-rh/usb00_a2/HID1/hid";216 217 int rc;218 215 219 216 devman_handle_t dev_handle = 0; 220 rc = devman_device_get_handle(devpath, &dev_handle, 0); 221 if (rc != EOK) { 222 printf("Failed to get handle from devman: %s.\n", 217 218 int rc = usb_resolve_device_handle(devpath, NULL, NULL, &dev_handle); 219 if (rc != EOK) { 220 printf("Device not found or not of USB kind: %s.\n", 223 221 str_error(rc)); 224 222 return rc; -
TabularUnified uspace/doc/main_usb.h ¶
rf3f9733 r2176ed6 1 1 /** 2 @mainpage ...bringing USB support toHelenOS2 @mainpage USB support for HelenOS 3 3 4 4 This is reference manual for USB subsystem for HelenOS.
Note:
See TracChangeset
for help on using the changeset viewer.