summaryrefslogtreecommitdiffstats
path: root/arch/riscv/kernel
diff options
context:
space:
mode:
authorArd Biesheuvel <ardb@kernel.org>2022-10-11 15:41:08 +0200
committerArd Biesheuvel <ardb@kernel.org>2022-11-09 12:42:02 +0100
commitfa882a1389b2a6eaba8a0d5439dbd32537d0ecc5 (patch)
treee814033bc2ac6b7ddf9b54ff07be18971ad237d3 /arch/riscv/kernel
parentf9a3c8488762284c855942d917200d2846392e40 (diff)
downloadlinux-fa882a1389b2a6eaba8a0d5439dbd32537d0ecc5.tar.bz2
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/kernel')
-rw-r--r--arch/riscv/kernel/image-vars.h1
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;