Commit a59dbb68 authored by Lucas Russo's avatar Lucas Russo

hal/sm_io/*/dsp/sm_io_dsp_exp.c: register config function

Now, once this SMIO gets spawn by the DEVIO, its
config function will also be called.

Part of the github issue #11.
parent b0223dbb
......@@ -16,6 +16,7 @@
#include "wb_pos_calc_regs.h"
#include "rw_param.h"
#include "rw_param_codes.h"
#include "sm_io_dsp_defaults.h"
/* Undef ASSERT_ALLOC to avoid conflicting with other ASSERT_ALLOC */
#ifdef ASSERT_TEST
......@@ -246,5 +247,6 @@ smio_err_e dsp_shutdown (smio_t *self)
const smio_bootstrap_ops_t dsp_bootstrap_ops = {
.init = dsp_init,
.shutdown = dsp_shutdown
.shutdown = dsp_shutdown,
.config_defaults = dsp_config_defaults
};
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment