提交 f30cfaca 编写于 作者: T Thomas Gleixner 提交者: Borislav Petkov

crypto: Convert to new CPU match macros

The new macro set has a consistent namespace and uses C99 initializers
instead of the grufty C89 ones.
Signed-off-by: NThomas Gleixner <tglx@linutronix.de>
Signed-off-by: NBorislav Petkov <bp@suse.de>
Reviewed-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Link: https://lkml.kernel.org/r/20200320131510.700250889@linutronix.de
上级 d51ba9c6
无相关合并请求
...@@ -1064,7 +1064,7 @@ static struct aead_alg aesni_aeads[0]; ...@@ -1064,7 +1064,7 @@ static struct aead_alg aesni_aeads[0];
static struct simd_aead_alg *aesni_simd_aeads[ARRAY_SIZE(aesni_aeads)]; static struct simd_aead_alg *aesni_simd_aeads[ARRAY_SIZE(aesni_aeads)];
static const struct x86_cpu_id aesni_cpu_id[] = { static const struct x86_cpu_id aesni_cpu_id[] = {
X86_FEATURE_MATCH(X86_FEATURE_AES), X86_MATCH_FEATURE(X86_FEATURE_AES, NULL),
{} {}
}; };
MODULE_DEVICE_TABLE(x86cpu, aesni_cpu_id); MODULE_DEVICE_TABLE(x86cpu, aesni_cpu_id);
......
...@@ -170,7 +170,7 @@ static struct shash_alg alg = { ...@@ -170,7 +170,7 @@ static struct shash_alg alg = {
}; };
static const struct x86_cpu_id crc32pclmul_cpu_id[] = { static const struct x86_cpu_id crc32pclmul_cpu_id[] = {
X86_FEATURE_MATCH(X86_FEATURE_PCLMULQDQ), X86_MATCH_FEATURE(X86_FEATURE_PCLMULQDQ, NULL),
{} {}
}; };
MODULE_DEVICE_TABLE(x86cpu, crc32pclmul_cpu_id); MODULE_DEVICE_TABLE(x86cpu, crc32pclmul_cpu_id);
......
...@@ -221,7 +221,7 @@ static struct shash_alg alg = { ...@@ -221,7 +221,7 @@ static struct shash_alg alg = {
}; };
static const struct x86_cpu_id crc32c_cpu_id[] = { static const struct x86_cpu_id crc32c_cpu_id[] = {
X86_FEATURE_MATCH(X86_FEATURE_XMM4_2), X86_MATCH_FEATURE(X86_FEATURE_XMM4_2, NULL),
{} {}
}; };
MODULE_DEVICE_TABLE(x86cpu, crc32c_cpu_id); MODULE_DEVICE_TABLE(x86cpu, crc32c_cpu_id);
......
...@@ -114,7 +114,7 @@ static struct shash_alg alg = { ...@@ -114,7 +114,7 @@ static struct shash_alg alg = {
}; };
static const struct x86_cpu_id crct10dif_cpu_id[] = { static const struct x86_cpu_id crct10dif_cpu_id[] = {
X86_FEATURE_MATCH(X86_FEATURE_PCLMULQDQ), X86_MATCH_FEATURE(X86_FEATURE_PCLMULQDQ, NULL),
{} {}
}; };
MODULE_DEVICE_TABLE(x86cpu, crct10dif_cpu_id); MODULE_DEVICE_TABLE(x86cpu, crct10dif_cpu_id);
......
...@@ -313,7 +313,7 @@ static struct ahash_alg ghash_async_alg = { ...@@ -313,7 +313,7 @@ static struct ahash_alg ghash_async_alg = {
}; };
static const struct x86_cpu_id pcmul_cpu_id[] = { static const struct x86_cpu_id pcmul_cpu_id[] = {
X86_FEATURE_MATCH(X86_FEATURE_PCLMULQDQ), /* Pickle-Mickle-Duck */ X86_MATCH_FEATURE(X86_FEATURE_PCLMULQDQ, NULL), /* Pickle-Mickle-Duck */
{} {}
}; };
MODULE_DEVICE_TABLE(x86cpu, pcmul_cpu_id); MODULE_DEVICE_TABLE(x86cpu, pcmul_cpu_id);
......
...@@ -474,7 +474,7 @@ static struct skcipher_alg cbc_aes_alg = { ...@@ -474,7 +474,7 @@ static struct skcipher_alg cbc_aes_alg = {
}; };
static const struct x86_cpu_id padlock_cpu_id[] = { static const struct x86_cpu_id padlock_cpu_id[] = {
X86_FEATURE_MATCH(X86_FEATURE_XCRYPT), X86_MATCH_FEATURE(X86_FEATURE_XCRYPT, NULL),
{} {}
}; };
MODULE_DEVICE_TABLE(x86cpu, padlock_cpu_id); MODULE_DEVICE_TABLE(x86cpu, padlock_cpu_id);
......
...@@ -490,7 +490,7 @@ static struct shash_alg sha256_alg_nano = { ...@@ -490,7 +490,7 @@ static struct shash_alg sha256_alg_nano = {
}; };
static const struct x86_cpu_id padlock_sha_ids[] = { static const struct x86_cpu_id padlock_sha_ids[] = {
X86_FEATURE_MATCH(X86_FEATURE_PHE), X86_MATCH_FEATURE(X86_FEATURE_PHE, NULL),
{} {}
}; };
MODULE_DEVICE_TABLE(x86cpu, padlock_sha_ids); MODULE_DEVICE_TABLE(x86cpu, padlock_sha_ids);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册