diff options
author | Rasmus Villemoes <linux@rasmusvillemoes.dk> | 2015-02-12 18:02:40 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2015-02-12 21:54:15 -0500 |
commit | 3248340d3f10871d2ae2d1df9e323f284fa1fdb6 (patch) | |
tree | 7182a43fe280b3fae73484defece49ce93be4457 | |
parent | 565ac23b81ebbcfad4111fa9c743ebc7fc25a4f7 (diff) |
lib/halfmd4.c: simplify includes
We only need EXPORT_SYMBOL, so compiler.h and export.h suffice. This
means linux/types.h is no longer implicitly included, so add an include of
uapi/linux/types.h to linux/cryptohash.h for __u32. Other users of
cryptohash.h cannot be affected, since they must already have been
including uapi/linux/types.h in order for gcc not to complain about
unknown types.
Signed-off-by: Rasmus Villemoes <linux@rasmusvillemoes.dk>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | include/linux/cryptohash.h | 2 | ||||
-rw-r--r-- | lib/halfmd4.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/include/linux/cryptohash.h b/include/linux/cryptohash.h index 2cd9f1cf9fa3..f4754282c9c2 100644 --- a/include/linux/cryptohash.h +++ b/include/linux/cryptohash.h | |||
@@ -1,6 +1,8 @@ | |||
1 | #ifndef __CRYPTOHASH_H | 1 | #ifndef __CRYPTOHASH_H |
2 | #define __CRYPTOHASH_H | 2 | #define __CRYPTOHASH_H |
3 | 3 | ||
4 | #include <uapi/linux/types.h> | ||
5 | |||
4 | #define SHA_DIGEST_WORDS 5 | 6 | #define SHA_DIGEST_WORDS 5 |
5 | #define SHA_MESSAGE_BYTES (512 /*bits*/ / 8) | 7 | #define SHA_MESSAGE_BYTES (512 /*bits*/ / 8) |
6 | #define SHA_WORKSPACE_WORDS 16 | 8 | #define SHA_WORKSPACE_WORDS 16 |
diff --git a/lib/halfmd4.c b/lib/halfmd4.c index 66d0ee8b7776..a8fe6274a13c 100644 --- a/lib/halfmd4.c +++ b/lib/halfmd4.c | |||
@@ -1,4 +1,4 @@ | |||
1 | #include <linux/kernel.h> | 1 | #include <linux/compiler.h> |
2 | #include <linux/export.h> | 2 | #include <linux/export.h> |
3 | #include <linux/cryptohash.h> | 3 | #include <linux/cryptohash.h> |
4 | 4 | ||