aboutsummaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
authorDavid S. Miller <davem@nuts.ninka.net>2003-03-20 07:52:35 -0800
committerDavid S. Miller <davem@nuts.ninka.net>2003-03-20 07:52:35 -0800
commit9d474c70391263c994bec66541cc5c054e8bb854 (patch)
tree09c9fe53bd55a68d4bcd9a3422efe6c4e8a0043d /crypto
parente76726c23bac0db5e32177ca3ff621d18bfa195d (diff)
downloadhistory-9d474c70391263c994bec66541cc5c054e8bb854.tar.gz
[CRYPTO]: Include linux/errno.h as appropriate.
Diffstat (limited to 'crypto')
-rw-r--r--crypto/aes.c1
-rw-r--r--crypto/api.c1
-rw-r--r--crypto/des.c1
-rw-r--r--crypto/digest.c1
-rw-r--r--crypto/serpent.c1
-rw-r--r--crypto/twofish.c1
6 files changed, 6 insertions, 0 deletions
diff --git a/crypto/aes.c b/crypto/aes.c
index 5f68d8ae3ce2bb..d46ac3bd0692dd 100644
--- a/crypto/aes.c
+++ b/crypto/aes.c
@@ -55,6 +55,7 @@
#include <linux/module.h>
#include <linux/init.h>
#include <linux/types.h>
+#include <linux/errno.h>
#include <linux/crypto.h>
#include <asm/byteorder.h>
diff --git a/crypto/api.c b/crypto/api.c
index 53c7ff8393a217..df1dde05e54016 100644
--- a/crypto/api.c
+++ b/crypto/api.c
@@ -15,6 +15,7 @@
*/
#include <linux/init.h>
#include <linux/crypto.h>
+#include <linux/errno.h>
#include <linux/rwsem.h>
#include <linux/slab.h>
#include "internal.h"
diff --git a/crypto/des.c b/crypto/des.c
index edc648ed891b51..cd3dcb548b614d 100644
--- a/crypto/des.c
+++ b/crypto/des.c
@@ -23,6 +23,7 @@
#include <linux/init.h>
#include <linux/module.h>
#include <linux/mm.h>
+#include <linux/errno.h>
#include <asm/scatterlist.h>
#include <linux/crypto.h>
diff --git a/crypto/digest.c b/crypto/digest.c
index 400f23566f6999..e82470a472be28 100644
--- a/crypto/digest.c
+++ b/crypto/digest.c
@@ -13,6 +13,7 @@
*/
#include <linux/crypto.h>
#include <linux/mm.h>
+#include <linux/errno.h>
#include <linux/highmem.h>
#include <asm/scatterlist.h>
#include "internal.h"
diff --git a/crypto/serpent.c b/crypto/serpent.c
index 35587654cc4ae5..080ae193aef69a 100644
--- a/crypto/serpent.c
+++ b/crypto/serpent.c
@@ -13,6 +13,7 @@
#include <linux/init.h>
#include <linux/module.h>
+#include <linux/errno.h>
#include <asm/byteorder.h>
#include <linux/crypto.h>
diff --git a/crypto/twofish.c b/crypto/twofish.c
index 0744f9590bfd8b..af2de8d63299fd 100644
--- a/crypto/twofish.c
+++ b/crypto/twofish.c
@@ -40,6 +40,7 @@
#include <linux/module.h>
#include <linux/init.h>
#include <linux/types.h>
+#include <linux/errno.h>
#include <linux/crypto.h>