diff options
author | Spencer Oliver <spen@spen-soft.co.uk> | 2012-02-06 11:27:04 +0000 |
---|---|---|
committer | Spencer Oliver <spen@spen-soft.co.uk> | 2012-02-06 12:55:03 +0000 |
commit | 7719e2188e89a93813caf2ac8cfd7457cb605631 (patch) | |
tree | 7f5666dcabcb977c6fb107bebfacb7e2bf314280 /src/flash/nand | |
parent | 374127301ec1d72033b9d573b72c7abdfd61990d (diff) | |
download | riscv-openocd-7719e2188e89a93813caf2ac8cfd7457cb605631.zip riscv-openocd-7719e2188e89a93813caf2ac8cfd7457cb605631.tar.gz riscv-openocd-7719e2188e89a93813caf2ac8cfd7457cb605631.tar.bz2 |
doxygen: use correct comment syntax
This issue was caused by uncrustify not correctly converting the doxygen
comments.
Signed-off-by: Spencer Oliver <spen@spen-soft.co.uk>
Change-Id: Ie6dc3b057a08603b670cb27312e5f0d989426e6c
Reviewed-on: http://openocd.zylin.com/431
Tested-by: jenkins
Diffstat (limited to 'src/flash/nand')
-rw-r--r-- | src/flash/nand/core.h | 2 | ||||
-rw-r--r-- | src/flash/nand/driver.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/flash/nand/core.h b/src/flash/nand/core.h index 0451084..2f5a2f8 100644 --- a/src/flash/nand/core.h +++ b/src/flash/nand/core.h @@ -218,7 +218,7 @@ int nand_calculate_ecc_kw(struct nand_device *nand, int nand_register_commands(struct command_context *cmd_ctx); -/* / helper for parsing a nand device command argument string */ +/** helper for parsing a nand device command argument string */ COMMAND_HELPER(nand_command_get_device, unsigned name_index, struct nand_device **nand); diff --git a/src/flash/nand/driver.h b/src/flash/nand/driver.h index caf3219..d49b943 100644 --- a/src/flash/nand/driver.h +++ b/src/flash/nand/driver.h @@ -90,7 +90,7 @@ struct nand_flash_controller { */ struct nand_flash_controller *nand_driver_find_by_name(const char *name); -/* / Signature for callback functions passed to nand_driver_walk */ +/** Signature for callback functions passed to nand_driver_walk */ typedef int (*nand_driver_walker_t)(struct nand_flash_controller *c, void *); /** * Walk the list of drivers, encapsulating the data structure type. |