Skip to content

Commit d18c2f2

Browse files
authored
Doxygen style, too. (#325)
* Doxygen style, too. Change-Id: I85e60e8577c4177ac7094ae41ee84357b292a89c * More Doxygen. Change-Id: Ic7477dce5459146f299e080cac1a3f133af7abdb
1 parent 93de2c9 commit d18c2f2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/target/riscv/riscv-013.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -754,7 +754,7 @@ static int write_abstract_arg(struct target *target, unsigned index,
754754
}
755755

756756
/**
757-
* @size in bits
757+
* @par size in bits
758758
*/
759759
static uint32_t access_register_command(struct target *target, uint32_t number,
760760
unsigned size, uint32_t flags)
@@ -1743,7 +1743,7 @@ static int deassert_reset(struct target *target)
17431743
}
17441744

17451745
/**
1746-
* @size in bytes
1746+
* @par size in bytes
17471747
*/
17481748
static void write_to_buf(uint8_t *buffer, uint64_t value, unsigned size)
17491749
{

src/target/riscv/riscv.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -514,7 +514,7 @@ int riscv_add_breakpoint(struct target *target, struct breakpoint *breakpoint)
514514
{
515515
assert(breakpoint);
516516
if (breakpoint->type == BKPT_SOFT) {
517-
/* @todo check RVC for size/alignment */
517+
/** @todo check RVC for size/alignment */
518518
if (!(breakpoint->length == 4 || breakpoint->length == 2)) {
519519
LOG_ERROR("Invalid breakpoint length %d", breakpoint->length);
520520
return ERROR_FAIL;

0 commit comments

Comments
 (0)