Changes in uspace/drv/usbkbd/main.c [5e07e2b5:252e30c] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/usbkbd/main.c
r5e07e2b5 r252e30c 33 33 /** 34 34 * @file 35 * Main routines of USB KBD driver.35 * Main routines of USB HID driver. 36 36 */ 37 37 … … 42 42 43 43 #include <usb/devdrv.h> 44 #include <usb/devpoll.h>45 44 46 45 #include "kbddev.h" … … 76 75 * @sa usb_kbd_fibril(), usb_kbd_repeat_fibril() 77 76 */ 78 static int usb _kbd_try_add_device(usb_device_t *dev)77 static int usbhid_try_add_device(usb_device_t *dev) 79 78 { 80 79 /* Create the function exposed under /dev/devices. */ … … 106 105 usb_kbd_free(&kbd_dev); 107 106 return rc; 108 } 107 } 109 108 110 109 usb_log_debug("USB/HID KBD device structure initialized.\n"); … … 196 195 * @retval EREFUSED if the device is not supported. 197 196 */ 198 static int usb _kbd_add_device(usb_device_t *dev)197 static int usbhid_add_device(usb_device_t *dev) 199 198 { 200 usb_log_debug("usb _kbd_add_device()\n");199 usb_log_debug("usbhid_add_device()\n"); 201 200 202 201 if (dev->interface_no < 0) { 203 202 usb_log_warning("Device is not a supported keyboard.\n"); 204 usb_log_error("Failed to add USB KBD device: endpoint not"205 " found.\n");203 usb_log_error("Failed to add HID device: endpoint not found." 204 "\n"); 206 205 return ENOTSUP; 207 206 } 208 207 209 int rc = usb _kbd_try_add_device(dev);208 int rc = usbhid_try_add_device(dev); 210 209 211 210 if (rc != EOK) { 212 211 usb_log_warning("Device is not a supported keyboard.\n"); 213 usb_log_error("Failed to add KBD device: %s.\n",212 usb_log_error("Failed to add HID device: %s.\n", 214 213 str_error(rc)); 215 214 return rc; … … 225 224 /* Currently, the framework supports only device adding. Once the framework 226 225 * supports unplug, more callbacks will be added. */ 227 static usb_driver_ops_t usb _kbd_driver_ops = {228 .add_device = usb _kbd_add_device,226 static usb_driver_ops_t usbhid_driver_ops = { 227 .add_device = usbhid_add_device, 229 228 }; 230 229 231 230 232 231 /* The driver itself. */ 233 static usb_driver_t usb _kbd_driver = {232 static usb_driver_t usbhid_driver = { 234 233 .name = NAME, 235 .ops = &usb _kbd_driver_ops,234 .ops = &usbhid_driver_ops, 236 235 .endpoints = usb_kbd_endpoints 237 236 }; … … 239 238 /*----------------------------------------------------------------------------*/ 240 239 240 //static driver_ops_t kbd_driver_ops = { 241 // .add_device = usbhid_add_device, 242 //}; 243 244 ///*----------------------------------------------------------------------------*/ 245 246 //static driver_t kbd_driver = { 247 // .name = NAME, 248 // .driver_ops = &kbd_driver_ops 249 //}; 250 251 /*----------------------------------------------------------------------------*/ 252 241 253 int main(int argc, char *argv[]) 242 254 { 243 printf(NAME ": HelenOS USB KBD driver.\n");255 printf(NAME ": HelenOS USB HID driver.\n"); 244 256 245 257 usb_log_enable(USB_LOG_LEVEL_DEBUG, NAME); 246 258 247 return usb_driver_main(&usb _kbd_driver);259 return usb_driver_main(&usbhid_driver); 248 260 } 249 261
Note:
See TracChangeset
for help on using the changeset viewer.