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

Commit 5f689b7e authored by qctecmdr's avatar qctecmdr Committed by Gerrit - the friendly Code Review server
Browse files

Merge "msm: cvp: All CVP load treated as real-time"

parents e8268830 237a8427
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -761,7 +761,7 @@ static void aggregate_power_update(struct msm_cvp_core *core,
			inst->state == MSM_CVP_CORE_UNINIT ||
			!is_subblock_profile_existed(inst))
			continue;
		if (inst->prop.priority <= CVP_RT_PRIO_THRESHOLD) {
		if (inst->prop.priority < CVP_RT_PRIO_THRESHOLD) {
			/* Non-realtime session use index 0 */
			i = 0;
		} else {
+2 −1
Original line number Diff line number Diff line
@@ -47,7 +47,8 @@

#define ARP_BUF_SIZE 0x100000

#define CVP_RT_PRIO_THRESHOLD 1
/* Adjust this value to admit non-realtime session */
#define CVP_RT_PRIO_THRESHOLD 0

struct msm_cvp_inst;