doxygen: fix some function prototype description

Change-Id: I49311a643ea73143839d2f6bde976cfd76f8c67f
Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com>
Reviewed-on: https://review.openocd.org/c/openocd/+/6830
Tested-by: jenkins
This commit is contained in:
Antonio Borneo 2022-01-23 00:37:10 +01:00
parent 49c40a7529
commit 2a2636f138
3 changed files with 2 additions and 5 deletions

View File

@ -114,8 +114,6 @@ static int jlink_flush(void);
* @param in A pointer to store TDO data to, if NULL the data will be discarded.
* @param in_offset A bit offset for TDO data.
* @param length Amount of bits to transfer out and in.
*
* @retval This function doesn't return any value.
*/
static void jlink_clock_data(const uint8_t *out, unsigned out_offset,
const uint8_t *tms_out, unsigned tms_offset,

View File

@ -604,8 +604,6 @@ static int ulink_get_queue_size(struct ulink *device,
* Clear the OpenULINK command queue.
*
* @param device pointer to struct ulink identifying ULINK driver instance.
* @return on success: ERROR_OK
* @return on failure: ERROR_FAIL
*/
static void ulink_clear_queue(struct ulink *device)
{

View File

@ -546,7 +546,8 @@ int jtag_srst_asserted(int *srst_asserted);
* @param field Pointer to scan field.
* @param value Pointer to scan value.
* @param mask Pointer to scan mask; may be NULL.
* @returns Nothing, but calls jtag_set_error() on any error.
*
* returns Nothing, but calls jtag_set_error() on any error.
*/
void jtag_check_value_mask(struct scan_field *field, uint8_t *value, uint8_t *mask);