summaryrefslogtreecommitdiff
path: root/src/flash/mflash.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/flash/mflash.c')
-rw-r--r--src/flash/mflash.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/flash/mflash.c b/src/flash/mflash.c
index f668db0d..29f562b1 100644
--- a/src/flash/mflash.c
+++ b/src/flash/mflash.c
@@ -358,8 +358,6 @@ static int mg_dsk_drv_info(void)
static int mg_mflash_probe(void)
{
- mflash_bank->proved = 0;
-
mg_init_gpio();
LOG_INFO("reset mflash");
@@ -387,8 +385,6 @@ static int mg_mflash_probe(void)
if (mg_dsk_drv_info() != ERROR_OK)
return ERROR_FAIL;
- mflash_bank->proved = 1;
-
return ERROR_OK;
}
@@ -678,10 +674,6 @@ static int mg_write_cmd(struct command_context_s *cmd_ctx, char *cmd, char **arg
address = strtoul(args[2], NULL, 0);
- if (! mflash_bank->proved ) {
- mg_mflash_probe();
- }
-
if (fileio_open(&fileio, args[1], FILEIO_READ, FILEIO_BINARY) != ERROR_OK) {
return ERROR_FAIL;
}
@@ -730,10 +722,6 @@ static int mg_dump_cmd(struct command_context_s *cmd_ctx, char *cmd, char **args
address = strtoul(args[2], NULL, 0);
size = strtoul(args[3], NULL, 0);
- if (! mflash_bank->proved ) {
- mg_mflash_probe();
- }
-
if (fileio_open(&fileio, args[1], FILEIO_WRITE, FILEIO_BINARY) != ERROR_OK) {
return ERROR_FAIL;
}