Re: [PATCH] crypto: arm64 - move const after static

2020-10-30 Thread Ard Biesheuvel
On Fri, 30 Oct 2020 at 09:18, Tian Tao wrote: > > Fixed the WARNING: Move const after static - use 'static const u8' > > Signed-off-by: Tian Tao Nak. What warning is that? This is perfectly valid C, and the const is already after the static. And in general, const applies to the type on the

[PATCH] crypto: arm64 - move const after static

2020-10-30 Thread Tian Tao
Fixed the WARNING: Move const after static - use 'static const u8' Signed-off-by: Tian Tao --- arch/arm64/crypto/aes-ce-glue.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm64/crypto/aes-ce-glue.c b/arch/arm64/crypto/aes-ce-glue.c index 56a5f6f..8ba6f04 100644 ---