mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-21 06:31:31 +00:00
tps6586x: staticize funtions
Make funtions static which are locally used in file. Signed-off-by: Manish Badarkhe <badarkhe.manish@gmail.com>
This commit is contained in:
parent
96ee97a17b
commit
bafd67d3d0
1 changed files with 2 additions and 2 deletions
|
@ -32,7 +32,7 @@ enum {
|
|||
};
|
||||
|
||||
#define MAX_I2C_RETRY 3
|
||||
int tps6586x_read(int reg)
|
||||
static int tps6586x_read(int reg)
|
||||
{
|
||||
int i;
|
||||
uchar data;
|
||||
|
@ -61,7 +61,7 @@ exit:
|
|||
return retval;
|
||||
}
|
||||
|
||||
int tps6586x_write(int reg, uchar *data, uint len)
|
||||
static int tps6586x_write(int reg, uchar *data, uint len)
|
||||
{
|
||||
int i;
|
||||
int retval = -1;
|
||||
|
|
Loading…
Add table
Reference in a new issue