diff options
author | Thierry Reding <treding@nvidia.com> | 2016-02-16 13:16:31 +0300 |
---|---|---|
committer | Will Deacon <will.deacon@arm.com> | 2016-02-16 13:32:10 +0300 |
commit | 7f4e346263f59ff50b531dda94609fb13ca12401 (patch) | |
tree | b12c6050856334aa7610d160512eb7b3672c460a /arch/arm64/lib | |
parent | bee038a4bd2efe8188cc80dfdad706a9abe568ad (diff) | |
download | linux-7f4e346263f59ff50b531dda94609fb13ca12401.tar.xz |
arm64/efi: Make strnlen() available to the EFI namespace
Changes introduced in the upstream version of libfdt pulled in by commit
91feabc2e224 ("scripts/dtc: Update to upstream commit b06e55c88b9b") use
the strnlen() function, which isn't currently available to the EFI name-
space. Add it to the EFI namespace to avoid a linker error.
Cc: Catalin Marinas <catalin.marinas@arm.com>
Cc: Rob Herring <robh@kernel.org>
Reviewed-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Signed-off-by: Thierry Reding <treding@nvidia.com>
Signed-off-by: Will Deacon <will.deacon@arm.com>
Diffstat (limited to 'arch/arm64/lib')
-rw-r--r-- | arch/arm64/lib/strnlen.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm64/lib/strnlen.S b/arch/arm64/lib/strnlen.S index 2ca665711bf2..eae38da6e0bb 100644 --- a/arch/arm64/lib/strnlen.S +++ b/arch/arm64/lib/strnlen.S @@ -168,4 +168,4 @@ CPU_LE( lsr tmp2, tmp2, tmp4 ) /* Shift (tmp1 & 63). */ .Lhit_limit: mov len, limit ret -ENDPROC(strnlen) +ENDPIPROC(strnlen) |