diff options
author | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2019-05-04 19:48:38 +0200 |
---|---|---|
committer | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2019-05-07 21:10:04 +0200 |
commit | 8101dd3dfaa9bf85a80b76fc2be1ae59bd051bc9 (patch) | |
tree | 9707a6065b584f79203395525bc0495035861b61 /include/efi_selftest.h | |
parent | 126a43f15b3627d39e71636f93c500d57adeb28a (diff) | |
download | u-boot-8101dd3dfaa9bf85a80b76fc2be1ae59bd051bc9.tar.gz |
efi_selftest: remove redundant function efi_st_memcmp()
Function memcmp() is available in efi_freestanding.c. So we do not remove a
further implementation.
Replace all usages of efi_st_memcmp() by memcmp().
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Diffstat (limited to 'include/efi_selftest.h')
-rw-r--r-- | include/efi_selftest.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/include/efi_selftest.h b/include/efi_selftest.h index dd42e49023..eaee188de7 100644 --- a/include/efi_selftest.h +++ b/include/efi_selftest.h @@ -93,17 +93,6 @@ u16 *efi_st_translate_char(u16 code); u16 *efi_st_translate_code(u16 code); /* - * Compare memory. - * We cannot use lib/string.c due to different CFLAGS values. - * - * @buf1: first buffer - * @buf2: second buffer - * @length: number of bytes to compare - * @return: 0 if both buffers contain the same bytes - */ -int efi_st_memcmp(const void *buf1, const void *buf2, size_t length); - -/* * Compare an u16 string to a char string. * * @buf1: u16 string |