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


Ignore:
Timestamp:
2011-03-21T18:21:46Z (13 years ago)
Author:
Vojtech Horky <vojtechhorky@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
31b568e
Parents:
434ef65 (diff), fbefd0e (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:

Logging refactoring

File:
1 edited

Legend:

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

    r434ef65 rce794342  
    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){
     
    290290        //if this hub already uses default address, it cannot request it once more
    291291        if(hub->is_default_address_used) return;
    292         usb_log_info("some connection changed\n");
     292        usb_log_debug("some connection changed\n");
    293293        assert(hub->control_pipe->hc_phone);
    294294        int opResult = usb_hub_clear_port_feature(hub->control_pipe,
     
    333333
    334334        int opResult;
    335         usb_log_info("finalizing add device\n");
     335        usb_log_debug("finalizing add device\n");
    336336        opResult = usb_hub_clear_port_feature(hub->control_pipe,
    337337            port, USB_HUB_FEATURE_C_PORT_RESET);
     
    365365                return;
    366366        }
    367         usb_log_info("setting new address %d\n",new_device_address);
     367        usb_log_debug("setting new address %d\n",new_device_address);
    368368        //opResult = usb_drv_req_set_address(hc, USB_ADDRESS_DEFAULT,
    369369        //    new_device_address);
     
    405405                return;
    406406        }
    407         usb_log_info("new device address %d, handle %zu\n",
     407        usb_log_info("Detected new device on `%s' (port %d), " \
     408            "address %d (handle %llu).\n",
     409            hub->usb_device->ddf_dev->name, (int) port,
    408410            new_device_address, child_handle);
    409 
    410411}
    411412
     
    504505        if (usb_port_connect_change(&status)) {
    505506                if (usb_port_dev_connected(&status)) {
    506                         usb_log_info("some connection changed\n");
     507                        usb_log_debug("some connection changed\n");
    507508                        usb_hub_init_add_device(hub, port, usb_port_speed(&status));
    508509                } else {
     
    516517                        usb_hub_over_current(hub,port);
    517518                }else{
    518                         usb_log_info("over current condition was auto-resolved on port %d\n",
     519                        usb_log_debug("over current condition was auto-resolved on port %d\n",
    519520                                        port);
    520521                }
     
    522523        //port reset
    523524        if (usb_port_reset_completed(&status)) {
    524                 usb_log_info("port reset complete\n");
     525                usb_log_debug("port reset complete\n");
    525526                if (usb_port_enabled(&status)) {
    526527                        usb_hub_finalize_add_device(hub, port, usb_port_speed(&status));
Note: See TracChangeset for help on using the changeset viewer.