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


Ignore:
Timestamp:
2016-07-22T08:24:47Z (8 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
f76d2c2
Parents:
5b18137 (diff), 8351f9a4 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge from lp:~jan.vesely/helenos/usb

File:
1 edited

Legend:

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

    r5b18137 rb4b534ac  
    3636#include <async.h>
    3737#include <stdio.h>
     38#include <io/logctl.h>
    3839
    3940#include <usb/dev/driver.h>
     
    4344#include "usbhub.h"
    4445
    45 /** Hub status-change endpoint description.
    46  *
    47  * For more information see section 11.15.1 of USB 1.1 specification.
    48  */
    49 static const usb_endpoint_description_t hub_status_change_endpoint_description =
    50 {
    51         .transfer_type = USB_TRANSFER_INTERRUPT,
    52         .direction = USB_DIRECTION_IN,
    53         .interface_class = USB_CLASS_HUB,
    54         .interface_subclass = 0,
    55         .interface_protocol = 0,
    56         .flags = 0
    57 };
    5846
    5947/** USB hub driver operations. */
     
    8068        printf(NAME ": HelenOS USB hub driver.\n");
    8169        log_init(NAME);
    82 
     70        logctl_set_log_level(NAME, LVL_NOTE);
    8371        return usb_driver_main(&usb_hub_driver);
    8472}
Note: See TracChangeset for help on using the changeset viewer.