diff options
author | Ard Biesheuvel <ardb@kernel.org> | 2022-10-11 15:41:08 +0200 |
---|---|---|
committer | Ard Biesheuvel <ardb@kernel.org> | 2022-11-09 12:42:02 +0100 |
commit | fa882a1389b2a6eaba8a0d5439dbd32537d0ecc5 (patch) | |
tree | e814033bc2ac6b7ddf9b54ff07be18971ad237d3 /arch/riscv | |
parent | MAINTAINERS: adjust entry after arm64 efi-entry.S file movement (diff) | |
download | linux-fa882a1389b2a6eaba8a0d5439dbd32537d0ecc5.tar.xz linux-fa882a1389b2a6eaba8a0d5439dbd32537d0ecc5.zip |
efi: libstub: Use local strncmp() implementation unconditionally
In preparation for moving the EFI stub functionality into the zboot
decompressor, switch to the stub's implementation of strncmp()
unconditionally.
Signed-off-by: Ard Biesheuvel <ardb@kernel.org>
Diffstat (limited to 'arch/riscv')
-rw-r--r-- | arch/riscv/kernel/image-vars.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/arch/riscv/kernel/image-vars.h b/arch/riscv/kernel/image-vars.h index d6e5f739905e..b46322cb5864 100644 --- a/arch/riscv/kernel/image-vars.h +++ b/arch/riscv/kernel/image-vars.h @@ -28,7 +28,6 @@ __efistub_memchr = memchr; __efistub_strlen = strlen; __efistub_strnlen = strnlen; __efistub_strcmp = strcmp; -__efistub_strncmp = strncmp; __efistub_strrchr = strrchr; __efistub__start = _start; |