diff options
author | Linus Walleij <linus.walleij@linaro.org> | 2015-03-23 11:06:13 +0100 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2015-03-28 12:07:46 -0400 |
commit | d5f3d17ca6b6272d9096912579778b67fa40a164 (patch) | |
tree | 93f8c55d43aa7e9952bec26fd0a38554bb412d63 /arch/arm/include | |
parent | 49995ffe81c266304bf9612fa2964b94d44a6c1c (diff) | |
download | u-boot-imx-d5f3d17ca6b6272d9096912579778b67fa40a164.zip u-boot-imx-d5f3d17ca6b6272d9096912579778b67fa40a164.tar.gz u-boot-imx-d5f3d17ca6b6272d9096912579778b67fa40a164.tar.bz2 |
armv8: semihosting: delete external interface
Now that loading files using semihosting can be done using
a command in standard scripts, and we have rewritten the boardfile
and added it to the Vexpress64, let's delete the external
interface to the semihosting file retrieveal and rely solely
on these commands, and staticize them inside that file so the
whole business is self-contained.
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'arch/arm/include')
-rw-r--r-- | arch/arm/include/asm/semihosting.h | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/arch/arm/include/asm/semihosting.h b/arch/arm/include/asm/semihosting.h deleted file mode 100644 index 835ca7e..0000000 --- a/arch/arm/include/asm/semihosting.h +++ /dev/null @@ -1,17 +0,0 @@ -/* - * Copyright 2014 Broadcom Corporation - * - * SPDX-License-Identifier: GPL-2.0+ - */ - -#ifndef __SEMIHOSTING_H__ -#define __SEMIHOSTING_H__ - -/* - * ARM semihosting functions for loading images to memory. See the source - * code for more information. - */ -int smh_load(const char *fname, void *memp, int avail, int verbose); -long smh_len(const char *fname); - -#endif /* __SEMIHOSTING_H__ */ |