blob: a341c878e977f859a7536043235ec1b780c1743c [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Ard Biesheuvel801201a2013-09-20 09:55:41 +02002
Ingo Molnardf6b35f2015-04-24 02:46:00 +02003#include <asm/fpu/api.h>
Ard Biesheuvel801201a2013-09-20 09:55:41 +02004
5/*
6 * may_use_simd - whether it is allowable at this time to issue SIMD
7 * instructions or access the SIMD register file
8 */
9static __must_check inline bool may_use_simd(void)
10{
11 return irq_fpu_usable();
12}