Changeset dfe4955 in mainline for uspace/drv/bus/usb/ohci/ohci.c


Ignore:
Timestamp:
2011-07-12T18:38:27Z (13 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
26858040
Parents:
b4f291d
Message:

UHCI: Mirror OHCI changes to generating irq code, and enabling interrupts.

Rename regs_t ⇒ uhci_regs_t

File:
1 edited

Legend:

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

    rb4f291d rdfe4955  
    202202            hc_get_irq_commands(irq_cmds, sizeof(irq_cmds), reg_base, reg_size);
    203203        CHECK_RET_DEST_FREE_RETURN(ret,
    204             "Failed to generate IRQ code: %s.\n", str_error(ret));
     204            "Failed to generate IRQ commands: %s.\n", str_error(ret));
    205205
    206206        irq_code_t irq_code = { .cmdcount = cmd_count, .cmds = irq_cmds };
     
    217217        if (ret != EOK) {
    218218                usb_log_warning("Failed to enable interrupts: %s."
    219                     "Falling back to polling\n", str_error(ret));
     219                    " Falling back to polling\n", str_error(ret));
    220220                /* We don't need that handler */
    221221                unregister_interrupt_handler(device, irq);
Note: See TracChangeset for help on using the changeset viewer.