diff options
| author | Herbert Xu <herbert@gondor.apana.org.au> | 2025-04-11 15:38:47 +0800 |
|---|---|---|
| committer | Herbert Xu <herbert@gondor.apana.org.au> | 2025-04-16 15:36:23 +0800 |
| commit | f1c09a0b6add651e6a0be22302680ac444dee29b (patch) | |
| tree | 8c5c8df95e066cef29f91e70ef6348bdb9822ea6 /arch/x86/include/asm/simd.h | |
| parent | d01dd2700b2d3690e4371466eb6f8a9b24c03e71 (diff) | |
| download | linux-next-f1c09a0b6add651e6a0be22302680ac444dee29b.tar.gz linux-next-f1c09a0b6add651e6a0be22302680ac444dee29b.zip | |
x86: Make simd.h more resilient
Add missing header inclusions and protect against double inclusion.
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'arch/x86/include/asm/simd.h')
| -rw-r--r-- | arch/x86/include/asm/simd.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/x86/include/asm/simd.h b/arch/x86/include/asm/simd.h index a341c878e977..b8027b63cd7a 100644 --- a/arch/x86/include/asm/simd.h +++ b/arch/x86/include/asm/simd.h @@ -1,6 +1,10 @@ /* SPDX-License-Identifier: GPL-2.0 */ +#ifndef _ASM_SIMD_H +#define _ASM_SIMD_H #include <asm/fpu/api.h> +#include <linux/compiler_attributes.h> +#include <linux/types.h> /* * may_use_simd - whether it is allowable at this time to issue SIMD @@ -10,3 +14,5 @@ static __must_check inline bool may_use_simd(void) { return irq_fpu_usable(); } + +#endif /* _ASM_SIMD_H */ |
