From 3c241f3b30e26ab0837e242acd606e16c2d4866f Mon Sep 17 00:00:00 2001 From: Patrick Daly Date: Sat, 23 Jul 2022 11:07:14 -0700 Subject: [PATCH] securemsm-kernel: Fix compilation errors with CONFIG_FTRACE=n smcinvoke.c:578:10: error: implicit declaration of function 'kthread_should_stop' while (!kthread_should_stop()) { smcinvoke.c:617:43: error: implicit declaration of function 'kthread_run' smcinvoke[i].postprocess_kthread_task = kthread_run( Change-Id: Id6a8b6844ec7ae00b55c81d3760a91da9d49a9ad Signed-off-by: Patrick Daly --- smcinvoke/smcinvoke.c | 1 + 1 file changed, 1 insertion(+) diff --git a/smcinvoke/smcinvoke.c b/smcinvoke/smcinvoke.c index 9cf91502be..d8af89b708 100644 --- a/smcinvoke/smcinvoke.c +++ b/smcinvoke/smcinvoke.c @@ -29,6 +29,7 @@ #include #include #include +#include #include "misc/qseecom_kernel.h" #include "smcinvoke.h" #include "smcinvoke_object.h"