1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-01-31 02:01:16 +00:00

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`.
This commit is contained in:
Marc Bonnici 2018-12-11 11:46:50 +00:00 committed by setrofim
parent a9e254742a
commit 6b03653227

View File

@ -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
""")