aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc Bonnici <marc.bonnici@arm.com>2018-12-11 11:46:50 +0000
committersetrofim <setrofim@gmail.com>2018-12-14 07:44:44 +0000
commit6b03653227f169dbe3bce57639dc6f92bb7a67f0 (patch)
treee9e74416eb226e86942402da9d189158d23dbd37
parenta9e254742a54fde557f8b899da735834eeb3d101 (diff)
fw/rt_config: Update tunables parameter to match other formats
Update RT param `governor_tunables` to `gov_tunables` to match the style of the other paramters e.g. `big_gov_tunables`.
-rw-r--r--wa/framework/target/runtime_config.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/wa/framework/target/runtime_config.py b/wa/framework/target/runtime_config.py
index 2728a831..7fd7d54b 100644
--- a/wa/framework/target/runtime_config.py
+++ b/wa/framework/target/runtime_config.py
@@ -370,13 +370,14 @@ class CpufreqRuntimeConfig(RuntimeConfig):
The governor to be set for all cores
""")
- param_name = 'governor_tunables'
+ param_name = 'gov_tunables'
self._runtime_params[param_name] = \
RuntimeParameter(
param_name, kind=dict,
merge=True,
setter=self.set_governor_tunables,
setter_params={'core': None},
+ aliases=['governor_tunables'],
description="""
The governor tunables to be set for all cores
""")