sched: walt: Move task_boost_type declarations

Make task_boost_type declarations public, as it is being used by other
modules, by moving to appropriate header.

Change-Id: I24baca67b9fdba883d7393247ca774ce9a664039
Signed-off-by: Shaleen Agrawal <shalagra@codeaurora.org>
This commit is contained in:
Shaleen Agrawal 2021-02-26 10:19:42 -08:00 committed by Rishabh Bhatnagar
parent 4a20cb72b6
commit ab32bc3be6
2 changed files with 8 additions and 8 deletions

View File

@ -22,6 +22,14 @@ struct core_ctl_notif_data {
unsigned int cur_cap_pct[MAX_CLUSTERS];
};
enum task_boost_type {
TASK_BOOST_NONE = 0,
TASK_BOOST_ON_MID,
TASK_BOOST_ON_MAX,
TASK_BOOST_STRICT_MAX,
TASK_BOOST_END,
};
#define WALT_NR_CPUS 8
#define RAVG_HIST_SIZE_MAX 5
#define NUM_BUSY_BUCKETS 10

View File

@ -49,14 +49,6 @@ enum migrate_types {
RQ_TO_GROUP,
};
enum task_boost_type {
TASK_BOOST_NONE = 0,
TASK_BOOST_ON_MID,
TASK_BOOST_ON_MAX,
TASK_BOOST_STRICT_MAX,
TASK_BOOST_END,
};
#define WALT_LOW_LATENCY_PROCFS BIT(0)
#define WALT_LOW_LATENCY_BINDER BIT(1)