summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Lezcano <daniel.lezcano@linaro.org>2021-05-25 17:22:07 +0200
committerDaniel Lezcano <daniel.lezcano@linaro.org>2021-05-25 17:22:07 +0200
commitba1e2362e08922df5838f06316c878f9016af68f (patch)
tree5d40d37cb8d2745e848fb9286da85e939b81d014
parentcc250f2517525b1a96ec0605581cf7ef2ea523cd (diff)
Disable power rebalancingHEADmaster
Power rebalancing is not yet ready, comment the call to the function. Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
-rw-r--r--src/dtpm/dtpm.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/dtpm/dtpm.c b/src/dtpm/dtpm.c
index 4d5367d..b47a467 100644
--- a/src/dtpm/dtpm.c
+++ b/src/dtpm/dtpm.c
@@ -720,9 +720,14 @@ int show_power_uw(struct dtpm *node, void *arg)
if (node->power_limit && dtpm_power(node) > node->power_limit) {
bold = 1;
- dtpm_balance_rebalance_power(node);
+ /*
+ *
+ * TODO: Fix and check power limit setting
+ * dtpm_balance_rebalance_power(node);
+ *
+ */
}
-
+
display_print_line(0, cb_param->line++, buffer, bold, arg);
return 0;