mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 02:30:34 +02:00 
			
		
		
		
	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: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Borislav Petkov <bp@suse.de> Reviewed-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Link: https://lkml.kernel.org/r/20200320131510.700250889@linutronix.de
This commit is contained in:
		
							parent
							
								
									d51ba9c666
								
							
						
					
					
						commit
						f30cfacad1
					
				
					 7 changed files with 7 additions and 7 deletions
				
			
		| 
						 | 
				
			
			@ -1064,7 +1064,7 @@ static struct aead_alg aesni_aeads[0];
 | 
			
		|||
static struct simd_aead_alg *aesni_simd_aeads[ARRAY_SIZE(aesni_aeads)];
 | 
			
		||||
 | 
			
		||||
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);
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -170,7 +170,7 @@ static struct shash_alg alg = {
 | 
			
		|||
};
 | 
			
		||||
 | 
			
		||||
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);
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -221,7 +221,7 @@ static struct shash_alg alg = {
 | 
			
		|||
};
 | 
			
		||||
 | 
			
		||||
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);
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -114,7 +114,7 @@ static struct shash_alg alg = {
 | 
			
		|||
};
 | 
			
		||||
 | 
			
		||||
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);
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -313,7 +313,7 @@ static struct ahash_alg ghash_async_alg = {
 | 
			
		|||
};
 | 
			
		||||
 | 
			
		||||
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);
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -474,7 +474,7 @@ static struct skcipher_alg cbc_aes_alg = {
 | 
			
		|||
};
 | 
			
		||||
 | 
			
		||||
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);
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -490,7 +490,7 @@ static struct shash_alg sha256_alg_nano = {
 | 
			
		|||
};
 | 
			
		||||
 | 
			
		||||
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);
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in a new issue