Commit e10b964b authored by Lucas Russo's avatar Lucas Russo

hal/sm_io/modules/sm_io_mod_dispatch.*: add new RFFE module to dispatch table

parent b60ab56a
......@@ -11,6 +11,7 @@
#include "sm_io_acq_exp.h"
#include "sm_io_dsp_exp.h"
#include "sm_io_swap_exp.h"
#include "sm_io_rffe_exp.h"
/* Table of all known modules we can handle */
const smio_mod_dispatch_t smio_mod_dispatch[MOD_DISPATCH_END] = {
......@@ -29,6 +30,10 @@ const smio_mod_dispatch_t smio_mod_dispatch[MOD_DISPATCH_END] = {
[3] = { .id = SWAP_SDB_DEVID,
.name = SWAP_SDB_NAME,
.bootstrap_ops = &swap_bootstrap_ops
},
[4] = { .id = RFFE_DEVID, /* No SDB as this is not an FPGA module */
.name = RFFE_NAME,
.bootstrap_ops = &rffe_bootstrap_ops
}
};
......@@ -13,7 +13,7 @@
/* #include "sm_io_bootstrap.h" */
/* Number of known specific modules that we can handle */
#define MOD_DISPATCH_END 4
#define MOD_DISPATCH_END 5
struct _smio_bootstrap_ops_t;
......
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