Sign in
nest-open-source
/
manifest_repos
/
kernel
/
979e58f5036ed916b6f745d83106bdfefe58341b
/
.
/
arch
/
arm
/
include
/
asm
/
simd.h
blob: 677e5a95265ddf0f30894e8597d650b68ee60095 [
file
]
/* SPDX-License-Identifier: GPL-2.0 */
#include
<linux/hardirq.h>
static
__must_check
inline
bool
may_use_simd
(
void
)
{
return
IS_ENABLED
(
CONFIG_KERNEL_MODE_NEON
)
&&
!
in_irq
();
}