aboutsummaryrefslogtreecommitdiff
path: root/src/flash/nand
diff options
context:
space:
mode:
authorSpencer Oliver <spen@spen-soft.co.uk>2012-02-06 11:27:04 +0000
committerSpencer Oliver <spen@spen-soft.co.uk>2012-02-06 12:55:03 +0000
commit7719e2188e89a93813caf2ac8cfd7457cb605631 (patch)
tree7f5666dcabcb977c6fb107bebfacb7e2bf314280 /src/flash/nand
parent374127301ec1d72033b9d573b72c7abdfd61990d (diff)
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.h2
-rw-r--r--src/flash/nand/driver.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/flash/nand/core.h b/src/flash/nand/core.h
index 04510845..2f5a2f8b 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 caf32197..d49b9434 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.