[PATCH] EmbeddedPkg/libfdt: Add strncmp macro to use AsciiStrnCmp
For the implementation which utilizes libfdt provided in EmbeddedPkg
however it uses strncmp function in the libfdt helper library, libfdt_env.h should provide the macro implied with edk2 strncmp implementation. The example is RISC-V OpenSBI library. edk2 RISC-V port uses OpenSBI library and incorporate with edk2 libfdt. edk2 libfdt_env.h provides the necessary macros to build OpenSBI which uses fdt functions in edk2 environment. However, OpenSBI also has libfdt helper library that uses strncmp function which is not defined in edk2 libfdt_env.h. This commit addresses the build issue caused by missing strncmp macro in libfdt_env.h. Check below three commits for the corresponding changes on OpenSBI, https://github.com/riscv/opensbi/commit/8e47649eff96c303e02fbd58cdc6c4ed341= 066ec https://github.com/riscv/opensbi/commit/2845d2d2cf4fb74a89452ba223995aa4a11= 8c07e https://github.com/riscv/opensbi/commit/2cfd2fc9048806353298a1b967abf985901= e36e8 Signed-off-by: Abner Chang <abner.chang@...> Cc: Leif Lindholm <leif@...> Cc: Ard Biesheuvel <ard.biesheuvel@...> Cc: Daniel Schaefer <daniel.schaefer@...> --- EmbeddedPkg/Include/libfdt_env.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/EmbeddedPkg/Include/libfdt_env.h b/EmbeddedPkg/Include/libfdt_= env.h index 11a9764733..7feff52bc0 100644 --- a/EmbeddedPkg/Include/libfdt_env.h +++ b/EmbeddedPkg/Include/libfdt_env.h @@ -76,4 +76,8 @@ static inline size_t strnlen (const char* str, size_t str= sz ) { return AsciiStrnLenS (str, strsz);=0D }=0D =0D +static inline size_t strncmp (const char* str1, const char* str2, size_t s= trsz ) {=0D + return AsciiStrnCmp (str1, str2, strsz);=0D +}=0D +=0D #endif /* _LIBFDT_ENV_H */=0D --=20 2.25.0 |
|