@@ -126,7 +126,7 @@ struct modem_cmd_handler_data {
126126/**
127127 * @brief get the last error code
128128 *
129- * @param * data: command handler data reference
129+ * @param data: command handler data reference
130130 *
131131 * @retval last handled error.
132132 */
@@ -135,8 +135,8 @@ int modem_cmd_handler_get_error(struct modem_cmd_handler_data *data);
135135/**
136136 * @brief set the last error code
137137 *
138- * @param * data: command handler data reference
139- * @param * error_code: error
138+ * @param data: command handler data reference
139+ * @param error_code: error
140140 *
141141 * @retval 0 if ok, < 0 if error.
142142 */
@@ -146,8 +146,8 @@ int modem_cmd_handler_set_error(struct modem_cmd_handler_data *data,
146146/**
147147 * @brief update the parser's handler commands
148148 *
149- * @param * data: handler data to use
150- * @param * handler_cmds: commands to attach
149+ * @param data: handler data to use
150+ * @param handler_cmds: commands to attach
151151 * @param handler_cmds_len: size of commands array
152152 * @param reset_error_flag: reset last error code
153153 *
@@ -165,12 +165,12 @@ int modem_cmd_handler_update_cmds(struct modem_cmd_handler_data *data,
165165 * specific behavior regarding acquiring tx_lock, setting and unsetting
166166 * @a handler_cmds.
167167 *
168- * @param * iface: interface to use
169- * @param * handler: command handler to use
170- * @param * handler_cmds: commands to attach
168+ * @param iface: interface to use
169+ * @param handler: command handler to use
170+ * @param handler_cmds: commands to attach
171171 * @param handler_cmds_len: size of commands array
172- * @param * buf: NULL terminated send buffer
173- * @param * sem: wait for response semaphore
172+ * @param buf: NULL terminated send buffer
173+ * @param sem: wait for response semaphore
174174 * @param timeout: timeout of command
175175 * @param flags: flags which influence behavior of command sending
176176 *
@@ -185,12 +185,12 @@ int modem_cmd_send_ext(struct modem_iface *iface,
185185/**
186186 * @brief send AT command to interface w/o locking TX
187187 *
188- * @param * iface: interface to use
189- * @param * handler: command handler to use
190- * @param * handler_cmds: commands to attach
188+ * @param iface: interface to use
189+ * @param handler: command handler to use
190+ * @param handler_cmds: commands to attach
191191 * @param handler_cmds_len: size of commands array
192- * @param * buf: NULL terminated send buffer
193- * @param * sem: wait for response semaphore
192+ * @param buf: NULL terminated send buffer
193+ * @param sem: wait for response semaphore
194194 * @param timeout: timeout of command
195195 *
196196 * @retval 0 if ok, < 0 if error.
@@ -210,12 +210,12 @@ static inline int modem_cmd_send_nolock(struct modem_iface *iface,
210210/**
211211 * @brief send AT command to interface w/ a TX lock
212212 *
213- * @param * iface: interface to use
214- * @param * handler: command handler to use
215- * @param * handler_cmds: commands to attach
213+ * @param iface: interface to use
214+ * @param handler: command handler to use
215+ * @param handler_cmds: commands to attach
216216 * @param handler_cmds_len: size of commands array
217- * @param * buf: NULL terminated send buffer
218- * @param * sem: wait for response semaphore
217+ * @param buf: NULL terminated send buffer
218+ * @param sem: wait for response semaphore
219219 * @param timeout: timeout of command
220220 *
221221 * @retval 0 if ok, < 0 if error.
@@ -233,11 +233,11 @@ static inline int modem_cmd_send(struct modem_iface *iface,
233233/**
234234 * @brief send a series of AT commands w/ a TX lock
235235 *
236- * @param * iface: interface to use
237- * @param * handler: command handler to use
238- * @param * cmds: array of setup commands to send
236+ * @param iface: interface to use
237+ * @param handler: command handler to use
238+ * @param cmds: array of setup commands to send
239239 * @param cmds_len: size of the setup command array
240- * @param * sem: wait for response semaphore
240+ * @param sem: wait for response semaphore
241241 * @param timeout: timeout of command
242242 *
243243 * @retval 0 if ok, < 0 if error.
@@ -250,11 +250,11 @@ int modem_cmd_handler_setup_cmds(struct modem_iface *iface,
250250/**
251251 * @brief send a series of AT commands w/o locking TX
252252 *
253- * @param * iface: interface to use
254- * @param * handler: command handler to use
255- * @param * cmds: array of setup commands to send
253+ * @param iface: interface to use
254+ * @param handler: command handler to use
255+ * @param cmds: array of setup commands to send
256256 * @param cmds_len: size of the setup command array
257- * @param * sem: wait for response semaphore
257+ * @param sem: wait for response semaphore
258258 * @param timeout: timeout of command
259259 *
260260 * @retval 0 if ok, < 0 if error.
@@ -325,7 +325,7 @@ int modem_cmd_handler_init(struct modem_cmd_handler *handler,
325325 * when one needs to prevent threads from sending UART data to the modem for an
326326 * extended period of time (for example during modem reset).
327327 *
328- * @param * handler: command handler to lock
328+ * @param handler: command handler to lock
329329 * @param timeout: give up after timeout
330330 *
331331 * @retval 0 if ok, < 0 if error.
@@ -336,7 +336,7 @@ int modem_cmd_handler_tx_lock(struct modem_cmd_handler *handler,
336336/**
337337 * @brief Unlock the modem for sending cmds
338338 *
339- * @param * handler: command handler to unlock
339+ * @param handler: command handler to unlock
340340 */
341341void modem_cmd_handler_tx_unlock (struct modem_cmd_handler * handler );
342342
0 commit comments