aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/fips.h
blob: afeeece9230244e776d4e82ec87b81f9ea2a533f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef _FIPS_H
#define _FIPS_H

#ifdef CONFIG_CRYPTO_FIPS
extern int fips_enabled;
#else
#define fips_enabled 0
#endif

#endif