projects
/
platform
/
kernel
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
96ee97a
)
tps6586x: staticize funtions
author
Manish Badarkhe
<badarkhe.manish@gmail.com>
Thu, 24 Apr 2014 03:25:07 +0000
(08:55 +0530)
committer
Tom Rini
<trini@ti.com>
Mon, 12 May 2014 19:19:46 +0000
(15:19 -0400)
Make funtions static which are locally used in file.
Signed-off-by: Manish Badarkhe <badarkhe.manish@gmail.com>
drivers/power/tps6586x.c
patch
|
blob
|
history
diff --git
a/drivers/power/tps6586x.c
b/drivers/power/tps6586x.c
index
704c243
..
d29d969
100644
(file)
--- a/
drivers/power/tps6586x.c
+++ b/
drivers/power/tps6586x.c
@@
-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;