summaryrefslogtreecommitdiff
path: root/src/flash/flash.h
diff options
context:
space:
mode:
authorZachary T Welch <zw@superlucidity.net>2009-11-15 06:48:20 -0800
committerZachary T Welch <zw@superlucidity.net>2009-11-16 08:44:38 -0800
commite84849f5ed7416c758914bea88a31827259c4f5b (patch)
tree09aa41817c6425c3722e37a7edbe3b5696e204e7 /src/flash/flash.h
parentd7a0dfa4dc28c60c3137b9f9acf3fcc046730f0f (diff)
downloadopenocd+libswd-e84849f5ed7416c758914bea88a31827259c4f5b.tar.gz
openocd+libswd-e84849f5ed7416c758914bea88a31827259c4f5b.tar.bz2
openocd+libswd-e84849f5ed7416c758914bea88a31827259c4f5b.tar.xz
openocd+libswd-e84849f5ed7416c758914bea88a31827259c4f5b.zip
flash_command_get_bank_by_num: make COMMAND_HELPER
Use COMMAND_HELPER macro to declare flash_command_get_bank_by_num. This is required for COMMAND_PARSE_NUMBER macro.
Diffstat (limited to 'src/flash/flash.h')
-rw-r--r--src/flash/flash.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/flash/flash.h b/src/flash/flash.h
index 4651fc36..96a41207 100644
--- a/src/flash/flash.h
+++ b/src/flash/flash.h
@@ -318,13 +318,13 @@ struct flash_bank *get_flash_bank_by_num(int num);
/**
* Retreives @a bank from a command argument, reporting errors parsing
* the bank identifier or retreiving the specified bank.
- * @param cmd_ctx The command context for reporting errors.
- * @param str The string containing the bank identifier.
+ * @param name_index The index to the string in args containing the
+ * bank identifier.
* @param bank On output, contians a pointer to the bank or NULL.
* @returns ERROR_OK on success, or an error indicating the problem.
*/
-int flash_command_get_bank_by_num(struct command_context *cmd_ctx,
- const char *str, struct flash_bank **bank);
+COMMAND_HELPER(flash_command_get_bank_by_num, unsigned name_index,
+ struct flash_bank **bank);
/**
* Returns the flash bank like get_flash_bank_by_num(), without probing.
* @param num The flash bank number.