Commit 30e7b47c authored by Lucas Russo's avatar Lucas Russo

src/sm_io/*: export SMIO module structure using SMIO_MOD_DECLARE

Now, we need to export our bootstrap structure
using the macro SMIO_MOD_DECLARE.
parent 7f7f7dcf
......@@ -892,3 +892,5 @@ const smio_bootstrap_ops_t acq_bootstrap_ops = {
.init = acq_init,
.shutdown = acq_shutdown
};
SMIO_MOD_DECLARE(ACQ_SDB_DEVID, ACQ_SDB_NAME, acq_bootstrap_ops)
......@@ -283,3 +283,5 @@ const smio_bootstrap_ops_t afc_diag_bootstrap_ops = {
.shutdown = afc_diag_shutdown,
.config_defaults = afc_diag_config_defaults
};
SMIO_MOD_DECLARE(AFC_DIAG_DEVID, AFC_DIAG_NAME, afc_diag_bootstrap_ops)
......@@ -337,3 +337,5 @@ const smio_bootstrap_ops_t dsp_bootstrap_ops = {
.shutdown = dsp_shutdown,
.config_defaults = dsp_config_defaults
};
SMIO_MOD_DECLARE(DSP_SDB_DEVID, DSP_SDB_NAME, dsp_bootstrap_ops)
......@@ -855,3 +855,5 @@ const smio_bootstrap_ops_t fmc130m_4ch_bootstrap_ops = {
.shutdown = fmc130m_4ch_shutdown,
.config_defaults = fmc130m_4ch_config_defaults
};
SMIO_MOD_DECLARE(FMC130M_4CH_SDB_DEVID, FMC130M_4CH_SDB_NAME, fmc130m_4ch_bootstrap_ops)
......@@ -389,3 +389,5 @@ const smio_bootstrap_ops_t rffe_bootstrap_ops = {
.shutdown = rffe_shutdown,
.config_defaults = rffe_config_defaults
};
SMIO_MOD_DECLARE(RFFE_DEVID, RFFE_NAME, rffe_bootstrap_ops)
......@@ -325,3 +325,5 @@ const smio_bootstrap_ops_t swap_bootstrap_ops = {
.shutdown = swap_shutdown,
.config_defaults = swap_config_defaults
};
SMIO_MOD_DECLARE(SWAP_SDB_DEVID, SWAP_SDB_NAME, swap_bootstrap_ops)
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