]> git.sur5r.net Git - u-boot/commitdiff
Export memset for standalone AQ FW load apps
authorShaohui Xie <Shaohui.Xie@nxp.com>
Wed, 7 Sep 2016 09:56:07 +0000 (17:56 +0800)
committerYork Sun <york.sun@nxp.com>
Wed, 14 Sep 2016 21:09:50 +0000 (14:09 -0700)
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 <Shaohui.Xie@nxp.com>
Signed-off-by: Gong Qianyu <Qianyu.Gong@nxp.com>
Reviewed-by: York Sun <york.sun@nxp.com>
include/_exports.h
include/exports.h

index 11beeb24f18327f87e5c73a30e24c4bb5c7bf1cb..158470532903cead95df93c8b26df36e3bcf8a56 100644 (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)
index deef8fbec8cccf0ac0382b496829f05a58fd7b8d..1d81bc4b289815707a98a0d5b4baf4e1474bfa8e 100644 (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;