Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/bus/usb/ohci/hc.c

    rb7fd2a0 r68e5406  
    9191static void hc_gain_control(hc_t *instance);
    9292static void hc_start(hc_t *instance);
    93 static errno_t hc_init_transfer_lists(hc_t *instance);
    94 static errno_t hc_init_memory(hc_t *instance);
     93static int hc_init_transfer_lists(hc_t *instance);
     94static int hc_init_memory(hc_t *instance);
    9595
    9696/** Generate IRQ code.
     
    103103 * @return Error code.
    104104 */
    105 errno_t ohci_hc_gen_irq_code(irq_code_t *code, const hw_res_list_parsed_t *hw_res, int *irq)
     105int ohci_hc_gen_irq_code(irq_code_t *code, const hw_res_list_parsed_t *hw_res, int *irq)
    106106{
    107107        assert(code);
     
    152152 * @return Error code
    153153 */
    154 errno_t hc_init(hc_t *instance, const hw_res_list_parsed_t *hw_res, bool interrupts)
     154int hc_init(hc_t *instance, const hw_res_list_parsed_t *hw_res, bool interrupts)
    155155{
    156156        assert(instance);
     
    160160            return EINVAL;
    161161
    162         errno_t ret = pio_enable_range(&hw_res->mem_ranges.ranges[0],
     162        int ret = pio_enable_range(&hw_res->mem_ranges.ranges[0],
    163163            (void **) &instance->registers);
    164164        if (ret != EOK) {
     
    269269}
    270270
    271 errno_t ohci_hc_status(hcd_t *hcd, uint32_t *status)
     271int ohci_hc_status(hcd_t *hcd, uint32_t *status)
    272272{
    273273        assert(hcd);
     
    289289 * @return Error code.
    290290 */
    291 errno_t ohci_hc_schedule(hcd_t *hcd, usb_transfer_batch_t *batch)
     291int ohci_hc_schedule(hcd_t *hcd, usb_transfer_batch_t *batch)
    292292{
    293293        assert(hcd);
     
    518518 * @return Error code
    519519 */
    520 errno_t hc_init_transfer_lists(hc_t *instance)
     520int hc_init_transfer_lists(hc_t *instance)
    521521{
    522522        assert(instance);
     
    524524do { \
    525525        const char *name = usb_str_transfer_type(type); \
    526         const errno_t ret = endpoint_list_init(&instance->lists[type], name); \
     526        const int ret = endpoint_list_init(&instance->lists[type], name); \
    527527        if (ret != EOK) { \
    528528                usb_log_error("Failed to setup %s endpoint list: %s.\n", \
     
    552552 * @return Error code.
    553553 */
    554 errno_t hc_init_memory(hc_t *instance)
     554int hc_init_memory(hc_t *instance)
    555555{
    556556        assert(instance);
     
    558558        memset(&instance->rh, 0, sizeof(instance->rh));
    559559        /* Init queues */
    560         const errno_t ret = hc_init_transfer_lists(instance);
     560        const int ret = hc_init_transfer_lists(instance);
    561561        if (ret != EOK) {
    562562                return ret;
Note: See TracChangeset for help on using the changeset viewer.