crypto: arm64/poly1305 - move data to rodata section
authorJia He <justin.he@arm.com>
Mon, 15 Jul 2024 07:20:23 +0000 (07:20 +0000)
committerHerbert Xu <herbert@gondor.apana.org.au>
Fri, 2 Aug 2024 13:11:20 +0000 (21:11 +0800)
commit47d96252099a7184b4bad852fcfa3c233c1d2f71
tree77ff3e13358b050d3f1b86ad7911a7857d6d0fab
parentab9a244c396aae4aaa34b2399b82fc15ec2df8c1
crypto: arm64/poly1305 - move data to rodata section

When objtool gains support for ARM in the future, it may encounter issues
disassembling the following data in the .text section:
> .Lzeros:
> .long   0,0,0,0,0,0,0,0
> .asciz  "Poly1305 for ARMv8, CRYPTOGAMS by \@dot-asm"
> .align  2

Move it to .rodata which is a more appropriate section for read-only data.

Signed-off-by: Jia He <justin.he@arm.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
arch/arm64/crypto/poly1305-armv8.pl