Ignore:
File:
1 edited

Legend:

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

    rb7fd2a0 r0e4c5f0  
    3939#include <ddi.h>
    4040#include <errno.h>
    41 #include <str_error.h>
    4241#include <macros.h>
    4342#include <stdlib.h>
     
    4948#include "stream.h"
    5049
    51 errno_t hda_stream_buffers_alloc(hda_t *hda, hda_stream_buffers_t **rbufs)
     50int hda_stream_buffers_alloc(hda_t *hda, hda_stream_buffers_t **rbufs)
    5251{
    5352        void *bdl;
     
    5756        size_t i;
    5857//      size_t j, k;
    59         errno_t rc;
     58        int rc;
    6059
    6160        bufs = calloc(1, sizeof(hda_stream_buffers_t));
     
    123122            0, &buffer_phys, &buffer);
    124123        if (rc != EOK) {
    125                 ddf_msg(LVL_NOTE, "dmamem_map_anon -> %s", str_error_name(rc));
     124                ddf_msg(LVL_NOTE, "dmamem_map_anon -> %d", rc);
    126125                goto error;
    127126        }
Note: See TracChangeset for help on using the changeset viewer.