]> git.ipfire.org Git - people/ms/u-boot.git/blame - arch/arm/include/asm/semihosting.h
arm: semihosting: staticize internal functions
[people/ms/u-boot.git] / arch / arm / include / asm / semihosting.h
CommitLineData
261d2760
DR
1/*
2 * Copyright 2014 Broadcom Corporation
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
6
7#ifndef __SEMIHOSTING_H__
8#define __SEMIHOSTING_H__
9
10/*
11 * ARM semihosting functions for loading images to memory. See the source
12 * code for more information.
13 */
14int smh_load(const char *fname, void *memp, int avail, int verbose);
261d2760
DR
15int smh_len(const char *fname);
16
17#endif /* __SEMIHOSTING_H__ */