Changes in / [d754f59:63862a0] in mainline


Ignore:
Location:
uspace/drv
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/ehci-hcd/main.c

    rd754f59 r63862a0  
    8888        ret = pci_disable_legacy(device, reg_base, reg_size, irq);
    8989        CHECK_RET_RETURN(ret,
    90             "Failed to disable legacy USB: %s.\n", str_error(ret));
     90            "Failed(%d) disable legacy USB: %s.\n", ret, str_error(ret));
    9191
    9292        ddf_fun_t *hc_fun = ddf_fun_create(device, fun_exposed, "ehci-hc");
  • uspace/drv/ehci-hcd/pci.c

    rd754f59 r63862a0  
    3535 */
    3636#include <errno.h>
    37 #include <str_error.h>
    3837#include <assert.h>
    3938#include <as.h>
     
    241240        void *regs = NULL;
    242241        int ret = pio_enable((void*)reg_base, reg_size, &regs);
    243         CHECK_RET_RETURN(ret, "Failed to map registers %p: %s.\n",
    244             (void *) reg_base, str_error(ret));
     242        CHECK_RET_RETURN(ret, "Failed(%d) to map registers %p.\n",
     243            ret, (void *) reg_base);
    245244
    246245        const uint32_t hcc_params =
     
    257256        uint32_t usblegsup;
    258257        ret = pci_read32(device, eecp + USBLEGSUP_OFFSET, &usblegsup);
    259         CHECK_RET_RETURN(ret, "Failed to read USBLEGSUP: %s.\n", str_error(ret));
     258        CHECK_RET_RETURN(ret, "Failed(%d) to read USBLEGSUP.\n", ret);
    260259        usb_log_debug("USBLEGSUP: %" PRIxn ".\n", usblegsup);
    261260
     
    264263        usb_log_debug("Requesting OS control.\n");
    265264        ret = pci_write8(device, eecp + USBLEGSUP_OFFSET + 3, 1);
    266         CHECK_RET_RETURN(ret, "Failed to request OS EHCI control: %s.\n",
    267             str_error(ret));
     265        CHECK_RET_RETURN(ret, "Failed(%d) to request OS EHCI control.\n", ret);
    268266
    269267        size_t wait = 0;
     
    285283                ret = pci_write32(device, eecp + USBLEGSUP_OFFSET,
    286284                    USBLEGSUP_OS_CONTROL);
    287                 CHECK_RET_RETURN(ret, "Failed to force OS control: %s.\n",
    288                     str_error(ret));
     285                CHECK_RET_RETURN(ret, "Failed(%d) to force OS control.\n", ret);
    289286                /* Check capability type here, A value of 01h
    290287                 * identifies the capability as Legacy Support.
     
    300297                            device, eecp + USBLEGCTLSTS_OFFSET, &usblegctlsts);
    301298                        CHECK_RET_RETURN(ret,
    302                             "Failed to get USBLEGCTLSTS: %s.\n", str_error(ret));
     299                            "Failed(%d) to get USBLEGCTLSTS.\n", ret);
    303300                        usb_log_debug("USBLEGCTLSTS: %" PRIxn ".\n",
    304301                            usblegctlsts);
     
    313310                            device, eecp + USBLEGCTLSTS_OFFSET, &usblegctlsts);
    314311                        CHECK_RET_RETURN(ret,
    315                             "Failed to get USBLEGCTLSTS 2: %s.\n",
    316                             str_error(ret));
     312                            "Failed(%d) to get USBLEGCTLSTS 2.\n", ret);
    317313                        usb_log_debug("Zeroed USBLEGCTLSTS: %" PRIxn ".\n",
    318314                            usblegctlsts);
     
    323319        /* Read again Legacy Support register */
    324320        ret = pci_read32(device, eecp + USBLEGSUP_OFFSET, &usblegsup);
    325         CHECK_RET_RETURN(ret, "Failed to read USBLEGSUP: %s.\n", str_error(ret));
     321        CHECK_RET_RETURN(ret, "Failed(%d) to read USBLEGSUP.\n", ret);
    326322        usb_log_debug("USBLEGSUP: %" PRIxn ".\n", usblegsup);
    327323
  • uspace/drv/ohci/hw_struct/hcca.h

    rd754f59 r63862a0  
    3737#include <stdint.h>
    3838
    39 /** Host controller communication area.
    40  * Shared memory used for communication between the controller and the driver.
    41  */
    4239typedef struct hcca {
    4340        uint32_t int_ep[32];
Note: See TracChangeset for help on using the changeset viewer.