From mboxrd@z Thu Jan 1 00:00:00 1970 From: Gong Qianyu Date: Wed, 7 Sep 2016 17:56:07 +0800 Subject: [U-Boot] [Patch v6 2/9] Export memset for standalone AQ FW load apps In-Reply-To: <1473242174-5807-1-git-send-email-Qianyu.Gong@nxp.com> References: <1473242174-5807-1-git-send-email-Qianyu.Gong@nxp.com> Message-ID: <1473242174-5807-3-git-send-email-Qianyu.Gong@nxp.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de From: Shaohui Xie The 'commit 95279315076c ("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 Signed-off-by: Gong Qianyu --- v3-v6: - No change. v2: - Revise commmit message. include/_exports.h | 1 + include/exports.h | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/include/_exports.h b/include/_exports.h index 11beeb2..1584705 100644 --- a/include/_exports.h +++ b/include/_exports.h @@ -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) diff --git a/include/exports.h b/include/exports.h index deef8fb..1d81bc4 100644 --- a/include/exports.h +++ b/include/exports.h @@ -57,7 +57,7 @@ struct jt_funcs { }; -#define XF_VERSION 8 +#define XF_VERSION 9 #if defined(CONFIG_X86) extern gd_t *global_data; -- 2.1.0.27.g96db324