Commit 8f3438cc authored by David Howells's avatar David Howells

PKCS#7: Missing inclusion of linux/err.h

crypto/asymmetric_keys/pkcs7_key_type.c needs to #include linux/err.h rather
than relying on getting it through other headers.

Without this, the powerpc allyesconfig build fails.
Reported-by: default avatarStephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: default avatarDavid Howells <dhowells@redhat.com>
parent 633706a2
...@@ -11,6 +11,7 @@ ...@@ -11,6 +11,7 @@
#define pr_fmt(fmt) "PKCS7key: "fmt #define pr_fmt(fmt) "PKCS7key: "fmt
#include <linux/key.h> #include <linux/key.h>
#include <linux/err.h>
#include <linux/key-type.h> #include <linux/key-type.h>
#include <crypto/pkcs7.h> #include <crypto/pkcs7.h>
#include <keys/user-type.h> #include <keys/user-type.h>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment