EMBEDDEDICE: review scope of functions

Add "static" qualifier to private functions.

Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com>
This commit is contained in:
Antonio Borneo 2010-04-10 16:44:54 +08:00
parent 3f0b17e48a
commit 263b4b9057
2 changed files with 3 additions and 2 deletions

View File

@ -47,6 +47,8 @@
* core entered debug mode.
*/
static int embeddedice_set_reg_w_exec(struct reg *reg, uint8_t *buf);
/*
* From: ARM9E-S TRM, DDI 0165, table C-4 (and similar, for other cores)
*/
@ -469,7 +471,7 @@ void embeddedice_set_reg(struct reg *reg, uint32_t value)
* Write an EmbeddedICE register, updating the register cache.
* Uses embeddedice_set_reg(); not queued.
*/
int embeddedice_set_reg_w_exec(struct reg *reg, uint8_t *buf)
static int embeddedice_set_reg_w_exec(struct reg *reg, uint8_t *buf)
{
int retval;

View File

@ -106,7 +106,6 @@ void embeddedice_write_reg(struct reg *reg, uint32_t value);
void embeddedice_store_reg(struct reg *reg);
void embeddedice_set_reg(struct reg *reg, uint32_t value);
int embeddedice_set_reg_w_exec(struct reg *reg, uint8_t *buf);
int embeddedice_receive(struct arm_jtag *jtag_info, uint32_t *data, uint32_t size);
int embeddedice_send(struct arm_jtag *jtag_info, uint32_t *data, uint32_t size);