Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 872b29b9 authored by Amit Pundir's avatar Amit Pundir
Browse files

ANDROID: cpufreq_interactive: Add missing includes



Cpufreq interfaces have been moved to <linux/sched/cpufreq.h>,
see upstream commit 7284c6d4 ("sched/headers: Move the
cpufreq interfaces to <linux/sched/cpufreq.h>") for reference.

Similarly upstream commit cda66725 ("sched/headers: Move the
get_task_struct()/put_task_struct() and related APIs from
<linux/sched.h> to <linux/sched/task.h>", moved [get,put]_task_struct()
APIs as well.

Also drop <linux/sched.h> which is no longer required, upstream
commit ed53742d ("sched/headers: Remove <linux/sched.h>
from <linux/sched/cpufreq.h>").

Signed-off-by: default avatarAmit Pundir <amit.pundir@linaro.org>
parent a848a164
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -24,8 +24,9 @@
#include <linux/module.h>
#include <linux/moduleparam.h>
#include <linux/rwsem.h>
#include <linux/sched.h>
#include <linux/sched/cpufreq.h>
#include <linux/sched/rt.h>
#include <linux/sched/task.h>
#include <linux/tick.h>
#include <linux/time.h>
#include <linux/timer.h>