diff options
author | Antonio Borneo <borneo.antonio@gmail.com> | 2010-04-10 19:29:51 +0800 |
---|---|---|
committer | Antonio Borneo <borneo.antonio@gmail.com> | 2010-04-10 19:29:51 +0800 |
commit | 61c06359915cbaef5b8538d2600ecbc17d4b387c (patch) | |
tree | 0fc7efa234a0440de381c4211c628fd9276e5ba4 /src/flash/nor | |
parent | 0c82bea44acf491164c96efd88c1a831fbf6ce67 (diff) | |
download | openocd+libswd-61c06359915cbaef5b8538d2600ecbc17d4b387c.tar.gz openocd+libswd-61c06359915cbaef5b8538d2600ecbc17d4b387c.tar.bz2 openocd+libswd-61c06359915cbaef5b8538d2600ecbc17d4b387c.tar.xz openocd+libswd-61c06359915cbaef5b8538d2600ecbc17d4b387c.zip |
STR9XPEC: review scope of functions
Add "static" qualifier to private functions.
Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com>
Diffstat (limited to 'src/flash/nor')
-rw-r--r-- | src/flash/nor/str9xpec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/flash/nor/str9xpec.c b/src/flash/nor/str9xpec.c index a93b6a27..861d70bc 100644 --- a/src/flash/nor/str9xpec.c +++ b/src/flash/nor/str9xpec.c @@ -33,7 +33,7 @@ static int str9xpec_erase_area(struct flash_bank *bank, int first, int last); static int str9xpec_set_address(struct flash_bank *bank, uint8_t sector); static int str9xpec_write_options(struct flash_bank *bank); -int str9xpec_set_instr(struct jtag_tap *tap, uint32_t new_instr, tap_state_t end_state) +static int str9xpec_set_instr(struct jtag_tap *tap, uint32_t new_instr, tap_state_t end_state) { if (tap == NULL) { return ERROR_TARGET_INVALID; |