Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

crypto: s5p-sss - Add missing header inclusions

The gutting of crypto/ctr.h uncovered missing header inclusions.
Add them.

Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>

Herbert Xu 60323cb4 6611dcd5

+11 -13
+11 -13
drivers/crypto/s5p-sss.c
··· 9 9 // 10 10 // Hash part based on omap-sham.c driver. 11 11 12 + #include <crypto/aes.h> 13 + #include <crypto/ctr.h> 14 + #include <crypto/internal/hash.h> 15 + #include <crypto/internal/skcipher.h> 16 + #include <crypto/md5.h> 17 + #include <crypto/scatterwalk.h> 18 + #include <crypto/sha1.h> 19 + #include <crypto/sha2.h> 12 20 #include <linux/clk.h> 13 - #include <linux/crypto.h> 14 21 #include <linux/dma-mapping.h> 15 22 #include <linux/err.h> 16 - #include <linux/errno.h> 17 23 #include <linux/init.h> 18 24 #include <linux/interrupt.h> 19 25 #include <linux/io.h> ··· 28 22 #include <linux/of.h> 29 23 #include <linux/platform_device.h> 30 24 #include <linux/scatterlist.h> 31 - 32 - #include <crypto/ctr.h> 33 - #include <crypto/aes.h> 34 - #include <crypto/algapi.h> 35 - #include <crypto/scatterwalk.h> 36 - 37 - #include <crypto/hash.h> 38 - #include <crypto/md5.h> 39 - #include <crypto/sha1.h> 40 - #include <crypto/sha2.h> 41 - #include <crypto/internal/hash.h> 25 + #include <linux/slab.h> 26 + #include <linux/spinlock.h> 27 + #include <linux/string.h> 42 28 43 29 #define _SBF(s, v) ((v) << (s)) 44 30