summaryrefslogtreecommitdiff
path: root/lib/crypto/pkcs7_parser.c
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2020-05-05 12:32:44 -0400
committerTom Rini <trini@konsulko.com>2020-05-05 12:32:44 -0400
commit9a3cc7b6d416fddfa6058b731fe5c9055dba6918 (patch)
treed08f6b1c5c9707d03b9343ad4896ea4df749b9c6 /lib/crypto/pkcs7_parser.c
parent191ee8aac60d6b828ee5f933ab2c6aceda167082 (diff)
parent16ad946f41d3dc3e475d8313f4acbba0df527a2a (diff)
Merge tag 'efi-2020-07-rc2-2' of https://gitlab.denx.de/u-boot/custodians/u-boot-efi
Pull request for UEFI sub-system for efi-2020-07-rc2-2 This patch contains error corrections and code simplifications for the UEFI sub-system.
Diffstat (limited to 'lib/crypto/pkcs7_parser.c')
-rw-r--r--lib/crypto/pkcs7_parser.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/crypto/pkcs7_parser.c b/lib/crypto/pkcs7_parser.c
index f5dda1179f8..0ee207b6b1c 100644
--- a/lib/crypto/pkcs7_parser.c
+++ b/lib/crypto/pkcs7_parser.c
@@ -20,7 +20,11 @@
#include <linux/err.h>
#include <linux/oid_registry.h>
#include <crypto/public_key.h>
+#ifdef __UBOOT__
+#include <crypto/pkcs7_parser.h>
+#else
#include "pkcs7_parser.h"
+#endif
#include "pkcs7.asn1.h"
MODULE_DESCRIPTION("PKCS#7 parser");