Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 16d5cee5 authored by Arvind Yadav's avatar Arvind Yadav Committed by Herbert Xu
Browse files

crypto: padlock-sha - constify x86_cpu_id



x86_cpu_id are not supposed to change at runtime. MODULE_DEVICE_TABLE
and x86_match_cpu are working with const x86_cpu_id. So mark the
non-const x86_cpu_id structs as const.

Signed-off-by: default avatarArvind Yadav <arvind.yadav.cs@gmail.com>
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent d9893645
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -509,7 +509,7 @@ static struct shash_alg sha256_alg_nano = {
	}
};

static struct x86_cpu_id padlock_sha_ids[] = {
static const struct x86_cpu_id padlock_sha_ids[] = {
	X86_FEATURE_MATCH(X86_FEATURE_PHE),
	{}
};