From e206e9b24a416d5f0965df0d0e7db53214a7869a Mon Sep 17 00:00:00 2001 From: Sergei Trofimov Date: Wed, 26 Jul 2017 14:20:58 +0100 Subject: [PATCH] module/cpufreq: fix get_affected_cpus docstring The docstring was duplicated from get_domain_cpus. This updates the docstring to reflect the difference from get_domain_cpus. --- devlib/module/cpufreq.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/devlib/module/cpufreq.py b/devlib/module/cpufreq.py index c4bc14f..2addfed 100644 --- a/devlib/module/cpufreq.py +++ b/devlib/module/cpufreq.py @@ -414,7 +414,7 @@ class CpufreqModule(Module): def get_affected_cpus(self, cpu): """ - Get the CPUs that share a frequency domain with the given CPU + Get the online CPUs that share a frequency domain with the given CPU """ if isinstance(cpu, int): cpu = 'cpu{}'.format(cpu)