From a6fb5b57aeee33a52255fbfdcb6bbfd83988a14a Mon Sep 17 00:00:00 2001 From: Brendan Jackman Date: Mon, 10 Apr 2017 11:51:50 +0100 Subject: [PATCH] cpufreq: Fix docstring for `cpu` parameter `cpu` can be an `int`, _or_ the full CPU name used by sysfs. --- 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 e75a250..25920f7 100644 --- a/devlib/module/cpufreq.py +++ b/devlib/module/cpufreq.py @@ -133,7 +133,7 @@ class CpufreqModule(Module): keyword arguments. Which tunables and values are valid depends on the governor. - :param cpu: The cpu for which the governor will be set. This must be the + :param cpu: The cpu for which the governor will be set. ``int`` or full cpu name as it appears in sysfs, e.g. ``cpu0``. :param governor: The name of the governor. Must be all lower case.