diff options
author | Peter Foley <pefoley2@pefoley.com> | 2014-09-25 11:23:15 -0700 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2014-09-26 11:02:56 +0200 |
commit | 0421fc837c822e86c76884a30a9155e512a5a66a (patch) | |
tree | dbe95a10a0705f5caf3e7b85bcbed2709f663138 /Documentation/arm | |
parent | adb19fb66eeebac07fe37d968725bb8906dadb8e (diff) | |
download | linux-0421fc837c822e86c76884a30a9155e512a5a66a.tar.bz2 |
Documentation: make functions static to avoid prototype warnings
Signed-off-by: Peter Foley <pefoley2@pefoley.com>
Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'Documentation/arm')
-rw-r--r-- | Documentation/arm/SH-Mobile/vrl4.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Documentation/arm/SH-Mobile/vrl4.c b/Documentation/arm/SH-Mobile/vrl4.c index e8a191358ad2..4cbbba58f3d2 100644 --- a/Documentation/arm/SH-Mobile/vrl4.c +++ b/Documentation/arm/SH-Mobile/vrl4.c @@ -77,7 +77,7 @@ struct hdr { #define ROUND_UP(x) ((x + ALIGN - 1) & ~(ALIGN - 1)) -ssize_t do_read(int fd, void *buf, size_t count) +static ssize_t do_read(int fd, void *buf, size_t count) { size_t offset = 0; ssize_t l; @@ -98,7 +98,7 @@ ssize_t do_read(int fd, void *buf, size_t count) return offset; } -ssize_t do_write(int fd, const void *buf, size_t count) +static ssize_t do_write(int fd, const void *buf, size_t count) { size_t offset = 0; ssize_t l; @@ -117,7 +117,7 @@ ssize_t do_write(int fd, const void *buf, size_t count) return offset; } -ssize_t write_zero(int fd, size_t len) +static ssize_t write_zero(int fd, size_t len) { size_t i = len; |