projects
/
GitHub
/
exynos8895
/
android_kernel_samsung_universal8895.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3133d76
)
crypto: fips - Remove bogus inclusion of internal.h
author
Herbert Xu
<herbert@gondor.apana.org.au>
Wed, 22 Apr 2015 05:25:54 +0000
(13:25 +0800)
committer
Herbert Xu
<herbert@gondor.apana.org.au>
Thu, 23 Apr 2015 06:18:08 +0000
(14:18 +0800)
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>
crypto/fips.c
patch
|
blob
|
blame
|
history
diff --git
a/crypto/fips.c
b/crypto/fips.c
index 553970081c62e290f47c8bb446f2f6f32f609cd6..0f65df997bfe7614460e870a9d5e9d75fd9ee367 100644
(file)
--- a/
crypto/fips.c
+++ b/
crypto/fips.c
@@
-10,7
+10,10
@@
*
*/
-#include "internal.h"
+#include <linux/export.h>
+#include <linux/fips.h>
+#include <linux/init.h>
+#include <linux/kernel.h>
int fips_enabled;
EXPORT_SYMBOL_GPL(fips_enabled);