xref: /openbmc/linux/arch/arm64/include/asm/simd.h (revision f960181d)
1 /*
2  * Copyright (C) 2017 Linaro Ltd. <ard.biesheuvel@linaro.org>
3  *
4  * This program is free software; you can redistribute it and/or modify it
5  * under the terms of the GNU General Public License version 2 as published
6  * by the Free Software Foundation.
7  */
8 
9 #ifndef __ASM_SIMD_H
10 #define __ASM_SIMD_H
11 
12 #include <linux/types.h>
13 
14 /*
15  * may_use_simd - whether it is allowable at this time to issue SIMD
16  *                instructions or access the SIMD register file
17  */
18 static __must_check inline bool may_use_simd(void)
19 {
20 	return true;
21 }
22 
23 #endif
24