From 74827b4fb7026a3a2f924c156f35299612556c76 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Fri, 23 Feb 2018 07:48:13 -0500 Subject: [PATCH] smc_api: Add missing includes MASTERKEY_REVISION_400_CURRENT, seal_titlekey, PMC_BASE and the randomcache functions aren't visible without them --- exosphere/smc_api.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/exosphere/smc_api.c b/exosphere/smc_api.c index e026b6c41..687c5c7b2 100644 --- a/exosphere/smc_api.c +++ b/exosphere/smc_api.c @@ -3,8 +3,12 @@ #include "utils.h" #include "configitem.h" #include "cpu_context.h" +#include "masterkey.h" #include "mc.h" #include "mmu.h" +#include "pmc.h" +#include "randomcache.h" +#include "sealedkeys.h" #include "smc_api.h" #include "smc_user.h" #include "se.h"