Changeset 03362fbd in mainline for uspace/drv/audio/sb16/sb16.c


Ignore:
Timestamp:
2013-02-09T23:14:45Z (12 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
22dfd38
Parents:
b5d2e57 (diff), 005b765 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge mainline changes.

Conflict resulting from bool.h → stdbool.h move and ddf structs turning opaque.
Fails to boot to shell console.

File:
1 edited

Legend:

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

    rb5d2e57 r03362fbd  
    2727 */
    2828
     29#define _DDF_DATA_IMPLANT
     30
    2931#include <errno.h>
    3032#include <str_error.h>
     
    115117                return ret;
    116118        }
    117         dsp_fun->driver_data = &sb->dsp;
    118         dsp_fun->ops = &sb_pcm_ops;
     119        //TODO remove data implant
     120        ddf_fun_data_implant(dsp_fun, &sb->dsp);
     121        ddf_fun_set_ops(dsp_fun, &sb_pcm_ops);
    119122        ddf_log_note("Sound blaster DSP (%x.%x) initialized.",
    120123            sb->dsp.version.major, sb->dsp.version.minor);
     
    124127                ddf_log_error(
    125128                    "Failed to bind PCM function: %s.", str_error(ret));
    126                 dsp_fun->driver_data = NULL;
     129                // TODO implanted data
    127130                ddf_fun_destroy(dsp_fun);
    128131                return ret;
     
    133136                ddf_log_error("Failed register PCM function in category: %s.",
    134137                    str_error(ret));
    135                 dsp_fun->driver_data = NULL;
    136                 ddf_fun_unbind(dsp_fun);
     138                ddf_fun_unbind(dsp_fun);
     139                // TODO implanted data
    137140                ddf_fun_destroy(dsp_fun);
    138141                return ret;
     
    147150                ddf_log_error("Failed to create mixer function.");
    148151                ddf_fun_unbind(dsp_fun);
    149                 dsp_fun->driver_data = NULL;
     152                // TODO implanted data
    150153                ddf_fun_destroy(dsp_fun);
    151154                return ENOMEM;
     
    156159                    str_error(ret));
    157160                ddf_fun_unbind(dsp_fun);
    158                 dsp_fun->driver_data = NULL;
     161                // TODO implanted data
    159162                ddf_fun_destroy(dsp_fun);
    160163                ddf_fun_destroy(mixer_fun);
     
    164167        ddf_log_note("Initialized mixer: %s.",
    165168            sb_mixer_type_str(sb->mixer.type));
    166         mixer_fun->driver_data = &sb->mixer;
    167         mixer_fun->ops = &sb_mixer_ops;
     169        ddf_fun_data_implant(mixer_fun, &sb->mixer);
     170        ddf_fun_set_ops(mixer_fun, &sb_mixer_ops);
    168171
    169172        ret = ddf_fun_bind(mixer_fun);
     
    171174                ddf_log_error(
    172175                    "Failed to bind mixer function: %s.", str_error(ret));
    173                 mixer_fun->driver_data = NULL;
     176                // TODO implanted data
    174177                ddf_fun_destroy(mixer_fun);
    175178
    176179                ddf_fun_unbind(dsp_fun);
    177                 dsp_fun->driver_data = NULL;
     180                // TODO implanted data
    178181                ddf_fun_destroy(dsp_fun);
    179182                return ret;
Note: See TracChangeset for help on using the changeset viewer.