]> Git Repo - linux.git/blob - include/linux/fips.h
Merge tag 'gvt-fixes-2020-09-17' of https://github.com/intel/gvt-linux into drm-intel...
[linux.git] / include / linux / fips.h
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _FIPS_H
3 #define _FIPS_H
4
5 #ifdef CONFIG_CRYPTO_FIPS
6 extern int fips_enabled;
7 extern struct atomic_notifier_head fips_fail_notif_chain;
8
9 void fips_fail_notify(void);
10
11 #else
12 #define fips_enabled 0
13
14 static inline void fips_fail_notify(void) {}
15
16 #endif
17
18 #endif
This page took 0.038063 seconds and 4 git commands to generate.