summaryrefslogtreecommitdiffstats
path: root/src/gsm/oap.c
diff options
context:
space:
mode:
authorNeels Hofmeyr <nhofmeyr@sysmocom.de>2017-06-20 00:17:59 +0200
committerNeels Hofmeyr <nhofmeyr@sysmocom.de>2017-06-23 00:18:22 +0000
commit87e4550585c643e97e0003119b254251ac5ed1d4 (patch)
tree9287f66aba70e9253f4d62926c54dddeb492895e /src/gsm/oap.c
parent249fb71a2e124acb191b7cd4d2c3af6a45da4a5e (diff)
doxygen: enable AUTOBRIEF, drop \brief
Especially for short descriptions, it is annoying to have to type \brief for every single API doc. Drop all \brief and enable the AUTOBRIEF feature of doxygen, which always takes the first sentence of an API doc as the brief description. Change-Id: I11a8a821b065a128108641a2a63fb5a2b1916e87
Diffstat (limited to 'src/gsm/oap.c')
-rw-r--r--src/gsm/oap.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gsm/oap.c b/src/gsm/oap.c
index 5706e8ff..88c98f75 100644
--- a/src/gsm/oap.c
+++ b/src/gsm/oap.c
@@ -30,10 +30,10 @@
/*! \addtogroup oap
* @{
- * \brief Osmocom Authentication Protocol
+ * Osmocom Authentication Protocol
*/
-/*! \brief Decode OAP message data.
+/*! Decode OAP message data.
* \param[out] oap_msg Parsed data is written to this instance.
* \param[in] data Pointer to the data buffer containing the OAP message.
* \param[in] data_len Length of the OAP message data.
@@ -152,7 +152,7 @@ int osmo_oap_decode(struct osmo_oap_message *oap_msg,
return 0;
}
-/*! \brief Compose OAP message data.
+/*! Compose OAP message data.
* \param[out] msg OAP message data is appended to this message buffer.
* \param[in] oap_msg Elements to encode in the message data.
*/