Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
bpm-sw
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
bpm
bpm-sw
Commits
b639279a
Commit
b639279a
authored
9 years ago
by
Lucas Russo
Browse files
Options
Downloads
Patches
Plain Diff
src/*/*/sm_io_mod_dispatch.c: remove table in favor of RO linker table
parent
d1edf01d
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/sm_io/modules/sm_io_mod_dispatch.c
+0
-59
0 additions, 59 deletions
src/sm_io/modules/sm_io_mod_dispatch.c
with
0 additions
and
59 deletions
src/sm_io/modules/sm_io_mod_dispatch.c
deleted
100644 → 0
+
0
−
59
View file @
d1edf01d
/*
* Copyright (C) 2014 LNLS (www.lnls.br)
* Author: Lucas Russo <lucas.russo@lnls.br>
*
* Released according to the GNU GPL, version 3 or any later version.
*/
#include
"bpm_server.h"
/* Private headers. Include all available module we can handle */
#include
"fmc130m_4ch/sm_io_fmc130m_4ch_exp.h"
#include
"acq/sm_io_acq_exp.h"
#include
"dsp/sm_io_dsp_exp.h"
#include
"swap/sm_io_swap_exp.h"
#include
"rffe/sm_io_rffe_exp.h"
#if defined (__BOARD_AFCV3__)
#include
"afc_diag/sm_io_afc_diag_exp.h"
#endif
/* Table of all known modules we can handle */
const
smio_mod_dispatch_t
smio_mod_dispatch
[]
=
{
{
.
id
=
FMC130M_4CH_SDB_DEVID
,
.
name
=
FMC130M_4CH_SDB_NAME
,
.
bootstrap_ops
=
&
fmc130m_4ch_bootstrap_ops
},
{
.
id
=
ACQ_SDB_DEVID
,
.
name
=
ACQ_SDB_NAME
,
.
bootstrap_ops
=
&
acq_bootstrap_ops
},
{
.
id
=
DSP_SDB_DEVID
,
.
name
=
DSP_SDB_NAME
,
.
bootstrap_ops
=
&
dsp_bootstrap_ops
},
{
.
id
=
SWAP_SDB_DEVID
,
.
name
=
SWAP_SDB_NAME
,
.
bootstrap_ops
=
&
swap_bootstrap_ops
},
{
.
id
=
RFFE_DEVID
,
/* No SDB as this is not an FPGA module */
.
name
=
RFFE_NAME
,
.
bootstrap_ops
=
&
rffe_bootstrap_ops
},
#if defined (__BOARD_AFCV3__)
{
.
id
=
AFC_DIAG_DEVID
,
.
name
=
AFC_DIAG_NAME
,
.
bootstrap_ops
=
&
afc_diag_bootstrap_ops
},
#endif
{
.
id
=
SMIO_DISPATCH_END_ID
,
.
name
=
"SMIO_DISPATCH_END"
,
.
bootstrap_ops
=
NULL
}
};
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment