Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

crypto: simd - Include asm/simd.h in internal/simd.h

Now that the asm/simd.h files have been made safe against double
inclusion, include it directly in internal/simd.h.

Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>

+1 -3
+1 -3
include/crypto/internal/simd.h
··· 6 6 #ifndef _CRYPTO_INTERNAL_SIMD_H 7 7 #define _CRYPTO_INTERNAL_SIMD_H 8 8 9 + #include <asm/simd.h> 9 10 #include <linux/percpu.h> 10 11 #include <linux/types.h> 11 12 ··· 47 46 * self-tests, in order to test the no-SIMD fallback code. This override is 48 47 * currently limited to configurations where the extra self-tests are enabled, 49 48 * because it might be a bit too invasive to be part of the regular self-tests. 50 - * 51 - * This is a macro so that <asm/simd.h>, which some architectures don't have, 52 - * doesn't have to be included directly here. 53 49 */ 54 50 #ifdef CONFIG_CRYPTO_MANAGER_EXTRA_TESTS 55 51 DECLARE_PER_CPU(bool, crypto_simd_disabled_for_test);