summaryrefslogtreecommitdiffstats
path: root/crypto/fips.c
diff options
context:
space:
mode:
authorHerbert Xu <herbert@gondor.apana.org.au>2015-04-22 01:25:54 -0400
committerHerbert Xu <herbert@gondor.apana.org.au>2015-04-23 02:18:08 -0400
commit76450f93f17bb03a27476371c4c907e26a3c78a4 (patch)
treea0f569d42e97046a587381acce2c8492b56def9f /crypto/fips.c
parent3133d76fc60bce6f3e00efb6c3540f2f449ff569 (diff)
crypto: fips - Remove bogus inclusion of internal.h
The header file internal.h is only meant for internal crypto API implementors such as rng.c. So fips has no business in including it. This patch removes that inclusions and instead adds inclusions of the actual features used by fips. Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto/fips.c')
-rw-r--r--crypto/fips.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/crypto/fips.c b/crypto/fips.c
index 553970081c62..0f65df997bfe 100644
--- a/crypto/fips.c
+++ b/crypto/fips.c
@@ -10,7 +10,10 @@
10 * 10 *
11 */ 11 */
12 12
13#include "internal.h" 13#include <linux/export.h>
14#include <linux/fips.h>
15#include <linux/init.h>
16#include <linux/kernel.h>
14 17
15int fips_enabled; 18int fips_enabled;
16EXPORT_SYMBOL_GPL(fips_enabled); 19EXPORT_SYMBOL_GPL(fips_enabled);