Changeset dd8ab1c in mainline for uspace/drv/audio


Ignore:
Timestamp:
2017-12-10T21:08:11Z (8 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.

Location:
uspace/drv/audio/hdaudio
Files:
3 edited

Legend:

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

    r1afa94d rdd8ab1c  
    3737#include <ddf/log.h>
    3838#include <errno.h>
     39#include <str_error.h>
    3940#include <stdlib.h>
    4041
     
    514515                goto error;
    515516
    516         ddf_msg(LVL_NOTE, "hda_get_subnc -> %d", rc);
     517        ddf_msg(LVL_NOTE, "hda_get_subnc -> %s", str_error_name(rc));
    517518        ddf_msg(LVL_NOTE, "sfg=%d nfg=%d", sfg, nfg);
    518519
     
    524525                        goto error;
    525526
    526                 ddf_msg(LVL_NOTE, "hda_get_fgrp_type -> %d", rc);
     527                ddf_msg(LVL_NOTE, "hda_get_fgrp_type -> %s", str_error_name(rc));
    527528                ddf_msg(LVL_NOTE, "unsol: %d, grptype: %d", unsol, grptype);
    528529
     
    546547                        goto error;
    547548
    548                 ddf_msg(LVL_NOTE, "hda_get_subnc -> %d", rc);
     549                ddf_msg(LVL_NOTE, "hda_get_subnc -> %s", str_error_name(rc));
    549550                ddf_msg(LVL_NOTE, "saw=%d baw=%d", saw, naw);
    550551
  • 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}
  • uspace/drv/audio/hdaudio/stream.c

    r1afa94d rdd8ab1c  
    3939#include <ddi.h>
    4040#include <errno.h>
     41#include <str_error.h>
    4142#include <macros.h>
    4243#include <stdlib.h>
     
    122123            0, &buffer_phys, &buffer);
    123124        if (rc != EOK) {
    124                 ddf_msg(LVL_NOTE, "dmamem_map_anon -> %d", rc);
     125                ddf_msg(LVL_NOTE, "dmamem_map_anon -> %s", str_error_name(rc));
    125126                goto error;
    126127        }
Note: See TracChangeset for help on using the changeset viewer.