aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorVadim Yanitskiy <axilirator@gmail.com>2019-03-25 15:57:09 +0700
committerVadim Yanitskiy <axilirator@gmail.com>2019-03-25 15:57:09 +0700
commit2f65bb1b0108702c52ef6c66d5c46a1b4544d445 (patch)
tree654ed9199831c5e3c0f8eb0a1c1fe9d700ad6d4a /src
parent9f2814283e88fa73f06dd591eed5dbc41ca4e638 (diff)
Doxygen: fix incorrect / missing parameter description
Diffstat (limited to 'src')
-rw-r--r--src/fsm.c2
-rw-r--r--src/gsmtap_util.c6
2 files changed, 4 insertions, 4 deletions
diff --git a/src/fsm.c b/src/fsm.c
index 5723bab4..d86ff4b5 100644
--- a/src/fsm.c
+++ b/src/fsm.c
@@ -395,7 +395,7 @@ void osmo_fsm_inst_change_parent(struct osmo_fsm_inst *fi,
}
/*! delete a given instance of a FSM
- * \param[in] fsm The FSM to be un-registered and deleted
+ * \param[in] fi FSM instance to be un-registered and deleted
*/
void osmo_fsm_inst_free(struct osmo_fsm_inst *fi)
{
diff --git a/src/gsmtap_util.c b/src/gsmtap_util.c
index 996830f6..fd0bcc96 100644
--- a/src/gsmtap_util.c
+++ b/src/gsmtap_util.c
@@ -368,7 +368,7 @@ static int gsmtap_sink_fd_cb(struct osmo_fd *fd, unsigned int flags)
}
/*! Add a local sink to an existing GSMTAP source and return fd
- * \param[in] gsmtap_fd file descriptor of the gsmtap socket
+ * \param[in] gti existing GSMTAP source
* \returns file descriptor of locally bound receive socket
*
* In case the GSMTAP socket is connected to a local destination
@@ -417,8 +417,8 @@ int gsmtap_source_add_sink(struct gsmtap_inst *gti)
*
* Open GSMTAP source (sending) socket, connect it to host/port,
* allocate 'struct gsmtap_inst' and optionally osmo_fd/osmo_wqueue
- * registration. This means it is like \ref gsmtap_init2 but integrated
- * with libosmocore \ref select */
+ * registration.
+ */
struct gsmtap_inst *gsmtap_source_init(const char *host, uint16_t port,
int ofd_wq_mode)
{