summaryrefslogtreecommitdiff
path: root/lib/utils/libfdt
diff options
context:
space:
mode:
authorAtish Patra <atish.patra@wdc.com>2019-06-19 00:54:04 +0300
committerAnup Patel <anup.patel@wdc.com>2019-06-19 07:18:59 +0300
commit200ed7c1bdb4d39caf9d0126e3741e72982852b0 (patch)
tree11bff85604758f4af128920635091c42d84f1dfb /lib/utils/libfdt
parent793e5e1184f04012804914bd922e68536f3b68dd (diff)
downloadopensbi-200ed7c1bdb4d39caf9d0126e3741e72982852b0.tar.xz
lib: Rename string.x to sbi_string.x
All string functions are part of libsbi. It makes more sense to rename them to sbi_string.x as the libsbi can be linked with external libraries that can have similar implementation. Signed-off-by: Atish Patra <atish.patra@wdc.com> Acked-by: Anup Patel <anup.patel@wdc.com>
Diffstat (limited to 'lib/utils/libfdt')
-rw-r--r--lib/utils/libfdt/libfdt_env.h14
1 files changed, 13 insertions, 1 deletions
diff --git a/lib/utils/libfdt/libfdt_env.h b/lib/utils/libfdt/libfdt_env.h
index c2b0c34..535b637 100644
--- a/lib/utils/libfdt/libfdt_env.h
+++ b/lib/utils/libfdt/libfdt_env.h
@@ -52,7 +52,7 @@
* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#include <sbi/string.h>
+#include <sbi/sbi_string.h>
#include <sbi/sbi_types.h>
#define INT_MAX ((int)(~0U >> 1))
@@ -66,6 +66,18 @@
#define FDT_BITWISE
#endif
+#define memmove sbi_memmove
+#define memcpy sbi_memcpy
+#define memcmp sbi_memcmp
+#define memchr sbi_memchr
+#define memset sbi_memset
+#define strchr sbi_strchr
+#define strrchr sbi_strrchr
+#define strcpy sbi_strcpy
+#define strcmp sbi_strcmp
+#define strlen sbi_strlen
+#define strnlen sbi_strnlen
+
typedef uint16_t FDT_BITWISE fdt16_t;
typedef uint32_t FDT_BITWISE fdt32_t;
typedef uint64_t FDT_BITWISE fdt64_t;