From eae0dfd6413341a43853288a687385f25abec8c1 Mon Sep 17 00:00:00 2001 From: buxiasen Date: Sat, 3 Aug 2024 00:12:36 +0800 Subject: [PATCH] pm_runtime: fix missing header if the sched.h not included by header already inside .c will cause sched_idletask not defined Signed-off-by: buxiasen --- drivers/power/pm/pm_runtime.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/power/pm/pm_runtime.c b/drivers/power/pm/pm_runtime.c index 21d086ae6f..c02fcd4c45 100644 --- a/drivers/power/pm/pm_runtime.c +++ b/drivers/power/pm/pm_runtime.c @@ -27,6 +27,7 @@ #include #include #include +#include #include #include #include