Export memset for standalone AQ FW load apps

The 'commit 9527931507 ("board/ls2085rdb: Export functions for
standalone AQ FW load apps")' mentioned memset was exported but
it was not, this patch exports the memset.

Signed-off-by: Shaohui Xie <Shaohui.Xie@nxp.com>
Signed-off-by: Gong Qianyu <Qianyu.Gong@nxp.com>
Reviewed-by: York Sun <york.sun@nxp.com>
This commit is contained in:
Shaohui Xie 2016-09-07 17:56:07 +08:00 committed by York Sun
parent 2f0dcf2dfa
commit 9578c4273d
2 changed files with 2 additions and 1 deletions

View File

@ -75,6 +75,7 @@
const char *, char **, unsigned int)
EXPORT_FUNC(strcpy, char *, strcpy, char *dest, const char *src)
EXPORT_FUNC(mdelay, void, mdelay, unsigned long msec)
EXPORT_FUNC(memset, void *, memset, void *, int, size_t)
#ifdef CONFIG_PHY_AQUANTIA
EXPORT_FUNC(mdio_get_current_dev, struct mii_dev *,
mdio_get_current_dev, void)

View File

@ -57,7 +57,7 @@ struct jt_funcs {
};
#define XF_VERSION 8
#define XF_VERSION 9
#if defined(CONFIG_X86)
extern gd_t *global_data;