Changeset 05ead5c in mainline


Ignore:
Timestamp:
2011-03-23T20:14:45Z (13 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
001b152, e18e0d6
Parents:
5bf82ee
Message:

Fix str_error parameter

Location:
uspace/drv
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/ohci/main.c

    r5bf82ee r05ead5c  
    158158        if (ret != EOK) {
    159159                usb_log_warning("Failed to enable interrupts: %s.\n",
    160                     str_error(rc));
     160                    str_error(ret));
    161161                usb_log_info("HW interrupts not available, " \
    162162                    "falling back to polling.\n");
  • uspace/drv/uhci-hcd/uhci.c

    r5bf82ee r05ead5c  
    182182        if (ret != EOK) {
    183183                usb_log_warning("Failed to enable interrupts: %s.\n",
    184                     str_error(rc));
     184                    str_error(ret));
    185185                usb_log_info("HW interrupts not available, " \
    186186                    "falling back to polling.\n");
Note: See TracChangeset for help on using the changeset viewer.