drm/panfrost: Remove set but not used variable 'bo'
[linux/fpc-iii.git] / include / linux / fips.h
blobc6961e932fef3437f3a25b2853c9a4fa61fdd179
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _FIPS_H
3 #define _FIPS_H
5 #ifdef CONFIG_CRYPTO_FIPS
6 extern int fips_enabled;
7 extern struct atomic_notifier_head fips_fail_notif_chain;
9 void fips_fail_notify(void);
11 #else
12 #define fips_enabled 0
14 static inline void fips_fail_notify(void) {}
16 #endif
18 #endif