aboutsummaryrefslogtreecommitdiffstats
path: root/src/core
diff options
context:
space:
mode:
authorVadim Yanitskiy <vyanitskiy@sysmocom.de>2023-11-30 05:22:40 +0700
committerlaforge <laforge@osmocom.org>2023-12-03 02:19:33 +0000
commit0887188c6b133b69142965d65e1be8a0696a6272 (patch)
tree671777c8718ff445301cb8229785f16b7273e22f /src/core
parent59afb8f14ce77b681f34cade2a58f16dd1a048d4 (diff)
soft_uart: fix doxygen doc for osmo_soft_uart_tx_ubits()
Diffstat (limited to 'src/core')
-rw-r--r--src/core/soft_uart.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/soft_uart.c b/src/core/soft_uart.c
index 5ddddb45..8d9142ba 100644
--- a/src/core/soft_uart.c
+++ b/src/core/soft_uart.c
@@ -280,7 +280,7 @@ static inline ubit_t osmo_uart_tx_bit(struct osmo_soft_uart *suart, struct msgb
* \param[in] suart soft-UART instance to pull the bits from.
* \param[out] ubits pointer to a buffer where to store pulled bits.
* \param[in] n_ubits number of unpacked bits to be pulled.
- * \returns number of unpacked bits pulled; negative on error. */
+ * \returns 0 on success; negative on error. */
int osmo_soft_uart_tx_ubits(struct osmo_soft_uart *suart, ubit_t *ubits, size_t n_ubits)
{
const struct osmo_soft_uart_cfg *cfg = &suart->cfg;