Changeset f97717d9 in mainline for uspace/drv/usbhub/usbhub.c


Ignore:
Timestamp:
2011-03-25T16:22:14Z (14 years ago)
Author:
Matus Dekanek <smekideki@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
da3dafc, e6223239
Parents:
d8421c4 (diff), f08c560 (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 development

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/usbhub/usbhub.c

    rd8421c4 rf97717d9  
    132132                return opResult;
    133133        }
    134         usb_log_info("setting port count to %d\n",descriptor->ports_count);
     134        usb_log_debug("setting port count to %d\n",descriptor->ports_count);
    135135        hub_info->port_count = descriptor->ports_count;
    136136        hub_info->attached_devs = (usb_hc_attached_device_t*)
     
    159159        usb_standard_device_descriptor_t *std_descriptor
    160160            = &hub_info->usb_device->descriptors.device;
    161         usb_log_info("hub has %d configurations\n",
     161        usb_log_debug("hub has %d configurations\n",
    162162            std_descriptor->configuration_count);
    163163        if(std_descriptor->configuration_count<1){
     
    288288        //if this hub already uses default address, it cannot request it once more
    289289        if(hub->is_default_address_used) return;
    290         usb_log_info("some connection changed\n");
     290        usb_log_debug("some connection changed\n");
    291291        assert(hub->control_pipe->hc_phone);
    292292        int opResult = usb_hub_clear_port_feature(hub->control_pipe,
     
    331331
    332332        int opResult;
    333         usb_log_info("finalizing add device\n");
     333        usb_log_debug("finalizing add device\n");
    334334        opResult = usb_hub_clear_port_feature(hub->control_pipe,
    335335            port, USB_HUB_FEATURE_C_PORT_RESET);
     
    363363                return;
    364364        }
    365         usb_log_info("setting new address %d\n",new_device_address);
     365        usb_log_debug("setting new address %d\n",new_device_address);
    366366        //opResult = usb_drv_req_set_address(hc, USB_ADDRESS_DEFAULT,
    367367        //    new_device_address);
     
    403403                return;
    404404        }
    405         usb_log_info("new device address %d, handle %zu\n",
     405        usb_log_info("Detected new device on `%s' (port %d), " \
     406            "address %d (handle %llu).\n",
     407            hub->usb_device->ddf_dev->name, (int) port,
    406408            new_device_address, child_handle);
    407 
    408409}
    409410
     
    502503        if (usb_port_connect_change(&status)) {
    503504                if (usb_port_dev_connected(&status)) {
    504                         usb_log_info("some connection changed\n");
     505                        usb_log_debug("some connection changed\n");
    505506                        usb_hub_init_add_device(hub, port, usb_port_speed(&status));
    506507                } else {
     
    514515                        usb_hub_over_current(hub,port);
    515516                }else{
    516                         usb_log_info("over current condition was auto-resolved on port %d\n",
     517                        usb_log_debug("over current condition was auto-resolved on port %d\n",
    517518                                        port);
    518519                }
     
    520521        //port reset
    521522        if (usb_port_reset_completed(&status)) {
    522                 usb_log_info("port reset complete\n");
     523                usb_log_debug("port reset complete\n");
    523524                if (usb_port_enabled(&status)) {
    524525                        usb_hub_finalize_add_device(hub, port, usb_port_speed(&status));
Note: See TracChangeset for help on using the changeset viewer.