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

Configure Feed

Select the types of activity you want to include in your feed.

crypto: ccp - Include crypto/utils.h for crypto_memneq

Include crypto/utils.h to get crypto_memneq rather than relying
on random inclusions.

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

+6 -5
+6 -5
drivers/crypto/ccp/ccp-ops.c
··· 8 8 * Author: Gary R Hook <gary.hook@amd.com> 9 9 */ 10 10 11 - #include <linux/dma-mapping.h> 12 - #include <linux/module.h> 13 - #include <linux/kernel.h> 14 - #include <linux/interrupt.h> 15 - #include <crypto/scatterwalk.h> 16 11 #include <crypto/des.h> 12 + #include <crypto/scatterwalk.h> 13 + #include <crypto/utils.h> 17 14 #include <linux/ccp.h> 15 + #include <linux/dma-mapping.h> 16 + #include <linux/errno.h> 17 + #include <linux/kernel.h> 18 + #include <linux/module.h> 18 19 19 20 #include "ccp-dev.h" 20 21