Changeset dd8ab1c in mainline for uspace/drv/audio/hdaudio/hdaudio.c


Ignore:
Timestamp:
2017-12-10T21:08:11Z (6 years ago)
Author:
Jiří Zárevúcky <zarevucky.jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
68e5406
Parents:
1afa94d
Message:

More str_error() additions.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/audio/hdaudio/hdaudio.c

    r1afa94d rdd8ab1c  
    267267            hdaudio_interrupt, &irq_code, &irq_cap);
    268268        if (rc != EOK) {
    269                 ddf_msg(LVL_ERROR, "Failed registering interrupt handler. (%d)",
    270                     rc);
     269                ddf_msg(LVL_ERROR, "Failed registering interrupt handler: %s",
     270                    str_error_name(rc));
    271271                goto error;
    272272        }
     
    314314        hw_res_list_parsed_clean(&res);
    315315
    316         ddf_msg(LVL_NOTE, "Failing hda_dev_add() -> %d", rc);
     316        ddf_msg(LVL_NOTE, "Failing hda_dev_add() -> %s", str_error_name(rc));
    317317        return rc;
    318318}
Note: See TracChangeset for help on using the changeset viewer.