summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAntonio Borneo <borneo.antonio@gmail.com>2010-04-10 20:11:40 +0800
committerAntonio Borneo <borneo.antonio@gmail.com>2010-04-10 20:11:40 +0800
commit5926b5a94fd4e29e0e020c2f87b542fd51bd5d6f (patch)
tree5eae1dc36eedc2e13b0e1c44fd0e16daa72b26f3 /src
parenta6307fed9100877df2def268acece81078e06d6f (diff)
downloadopenocd+libswd-5926b5a94fd4e29e0e020c2f87b542fd51bd5d6f.tar.gz
openocd+libswd-5926b5a94fd4e29e0e020c2f87b542fd51bd5d6f.tar.bz2
openocd+libswd-5926b5a94fd4e29e0e020c2f87b542fd51bd5d6f.tar.xz
openocd+libswd-5926b5a94fd4e29e0e020c2f87b542fd51bd5d6f.zip
MFLASH: review scope of functions
Add "static" qualifier to private functions. Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com>
Diffstat (limited to 'src')
-rw-r--r--src/flash/mflash.c2
-rw-r--r--src/flash/mflash.h1
2 files changed, 1 insertions, 2 deletions
diff --git a/src/flash/mflash.c b/src/flash/mflash.c
index 289fe5eb..d3078583 100644
--- a/src/flash/mflash.c
+++ b/src/flash/mflash.c
@@ -1302,7 +1302,7 @@ static const struct command_registration mflash_exec_command_handlers[] = {
COMMAND_REGISTRATION_DONE
};
-int mflash_init_drivers(struct command_context *cmd_ctx)
+static int mflash_init_drivers(struct command_context *cmd_ctx)
{
if (!mflash_bank)
return ERROR_OK;
diff --git a/src/flash/mflash.h b/src/flash/mflash.h
index 358d2536..bb3cd05b 100644
--- a/src/flash/mflash.h
+++ b/src/flash/mflash.h
@@ -142,7 +142,6 @@ struct mflash_bank
};
int mflash_register_commands(struct command_context *cmd_ctx);
-int mflash_init_drivers(struct command_context *cmd_ctx);
#define MG_MFLASH_SECTOR_SIZE (0x200) /* 512Bytes = 2^9 */
#define MG_MFLASH_SECTOR_SIZE_MASK (0x200-1)