Changeset ee9ea16 in mainline for uspace/drv/bus/usb/usbhub/main.c


Ignore:
Timestamp:
2011-09-19T12:29:04Z (14 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
d46b13d
Parents:
c94f643
Message:

usbhub: Codestyle

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/bus/usb/usbhub/main.c

    rc94f643 ree9ea16  
    5656
    5757/**
    58  * usb hub driver operations
     58 * USB hub driver operations
    5959 *
    6060 * The most important one is add_device, which is set to usb_hub_add_device.
     
    6464};
    6565
    66 /**
    67  * hub endpoints, excluding control endpoint
    68  */
     66/** Hub endpoints, excluding control endpoint. */
    6967static usb_endpoint_description_t *usb_hub_endpoints[] = {
    7068        &hub_status_change_endpoint_description,
    71         NULL
     69        NULL,
    7270};
    73 
    74 /**
    75  * static usb hub driver information
    76  */
     71/** Static usb hub driver information. */
    7772static usb_driver_t usb_hub_driver = {
    7873        .name = NAME,
     
    8580{
    8681        printf(NAME ": HelenOS USB hub driver.\n");
    87 
    8882        usb_log_enable(USB_LOG_LEVEL_DEFAULT, NAME);
    8983
     
    9488 * @}
    9589 */
    96 
Note: See TracChangeset for help on using the changeset viewer.