summaryrefslogtreecommitdiff
path: root/src/flash/faux.c
diff options
context:
space:
mode:
authorZachary T Welch <zw@superlucidity.net>2009-11-09 09:20:33 -0800
committerZachary T Welch <zw@superlucidity.net>2009-11-09 18:42:47 -0800
commit041c319d9dbdc8159cef3257b7f607aaf91b468c (patch)
treeb078d32d710f1a45418c5a8f78607ba04298ba26 /src/flash/faux.c
parent712d3fc0fb3ed69342a649d8bbb0d6d901a64720 (diff)
downloadopenocd+libswd-041c319d9dbdc8159cef3257b7f607aaf91b468c.tar.gz
openocd+libswd-041c319d9dbdc8159cef3257b7f607aaf91b468c.tar.bz2
openocd+libswd-041c319d9dbdc8159cef3257b7f607aaf91b468c.tar.xz
openocd+libswd-041c319d9dbdc8159cef3257b7f607aaf91b468c.zip
flash/<various>.c: remove useless declarations
Remove useless forward declarations. Moves flash structure definitions to end of files. Signed-off-by: Zachary T Welch <zw@superlucidity.net>
Diffstat (limited to 'src/flash/faux.c')
-rw-r--r--src/flash/faux.c38
1 files changed, 14 insertions, 24 deletions
diff --git a/src/flash/faux.c b/src/flash/faux.c
index c5928ad6..474dee5b 100644
--- a/src/flash/faux.c
+++ b/src/flash/faux.c
@@ -25,30 +25,6 @@
#include "image.h"
-static int faux_register_commands(struct command_context_s *cmd_ctx);
-static int faux_flash_bank_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc, struct flash_bank_s *bank);
-static int faux_erase(struct flash_bank_s *bank, int first, int last);
-static int faux_protect(struct flash_bank_s *bank, int set, int first, int last);
-static int faux_write(struct flash_bank_s *bank, uint8_t *buffer, uint32_t offset, uint32_t count);
-static int faux_probe(struct flash_bank_s *bank);
-static int faux_protect_check(struct flash_bank_s *bank);
-static int faux_info(struct flash_bank_s *bank, char *buf, int buf_size);
-
-flash_driver_t faux_flash =
-{
- .name = "faux",
- .register_commands = faux_register_commands,
- .flash_bank_command = faux_flash_bank_command,
- .erase = faux_erase,
- .protect = faux_protect,
- .write = faux_write,
- .probe = faux_probe,
- .auto_probe = faux_probe,
- .erase_check = default_flash_blank_check,
- .protect_check = faux_protect_check,
- .info = faux_info
-};
-
typedef struct faux_flash_bank_s
{
struct target_s *target;
@@ -151,3 +127,17 @@ static int faux_probe(struct flash_bank_s *bank)
{
return ERROR_OK;
}
+
+flash_driver_t faux_flash = {
+ .name = "faux",
+ .register_commands = &faux_register_commands,
+ .flash_bank_command = &faux_flash_bank_command,
+ .erase = &faux_erase,
+ .protect = &faux_protect,
+ .write = &faux_write,
+ .probe = &faux_probe,
+ .auto_probe = &faux_probe,
+ .erase_check = &default_flash_blank_check,
+ .protect_check = &faux_protect_check,
+ .info = &faux_info
+ };