summaryrefslogtreecommitdiff
path: root/arch/arm/include/asm/semihosting.h
diff options
context:
space:
mode:
authorLinus Walleij <linus.walleij@linaro.org>2014-12-15 10:05:43 (GMT)
committerTom Rini <trini@ti.com>2014-12-29 12:44:06 (GMT)
commit50b56394307f76afe5ed1fac885e6d792d432c58 (patch)
treee7eb7bcce675f61c5f09e83470555d18d1260daf /arch/arm/include/asm/semihosting.h
parent437b23e67fafa84dcc46a3f6b2d4e4bb7833c461 (diff)
downloadu-boot-50b56394307f76afe5ed1fac885e6d792d432c58.tar.xz
arm: semihosting: staticize internal functions
The semihosting code exposes internal file handle handling functions to read(), open(), close() and get the length of a certain file handle. However the code using it is only interested in either reading and entire named file into memory or getting the file length of a file referred by name. No file handles are used. Thus make the file handle code internal to this file by removing these functions from the semihosting header file and staticize them. This gives us some freedom to rearrange the semihosting code without affecting the external interface. Cc: Darwin Rambo <drambo@broadcom.com> Cc: AKASHI Takahiro <takahiro.akashi@linaro.org> Cc: Mark Hambleton <mark.hambleton@arm.com> Cc: Tom Rini <trini@ti.com> Acked-by: Steve Rae <srae@broadcom.com> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'arch/arm/include/asm/semihosting.h')
-rw-r--r--arch/arm/include/asm/semihosting.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/arch/arm/include/asm/semihosting.h b/arch/arm/include/asm/semihosting.h
index 74111dc..e59b44e 100644
--- a/arch/arm/include/asm/semihosting.h
+++ b/arch/arm/include/asm/semihosting.h
@@ -12,10 +12,6 @@
* code for more information.
*/
int smh_load(const char *fname, void *memp, int avail, int verbose);
-int smh_read(int fd, void *memp, int len);
-int smh_open(const char *fname, char *modestr);
-int smh_close(int fd);
-int smh_len_fd(int fd);
int smh_len(const char *fname);
#endif /* __SEMIHOSTING_H__ */