PM / OPP: Mark cpumask as const in dev_pm_opp_set_sharing_cpus()

dev_pm_opp_set_sharing_cpus() isn't supposed to update the cpumask
passed as its parameter, and so it should always have been marked
'const'.

Do it now.

Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
Acked-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
这个提交包含在:
Viresh Kumar
2016-04-27 08:52:22 +05:30
提交者 Rafael J. Wysocki
父节点 d708b384c0
当前提交 dde370b23c
修改 2 个文件,包含 4 行新增3 行删除

查看文件

@@ -287,7 +287,8 @@ EXPORT_SYMBOL_GPL(dev_pm_opp_of_get_sharing_cpus);
* that this function is *NOT* called under RCU protection or in contexts where
* mutex cannot be locked.
*/
int dev_pm_opp_set_sharing_cpus(struct device *cpu_dev, cpumask_var_t cpumask)
int dev_pm_opp_set_sharing_cpus(struct device *cpu_dev,
const cpumask_var_t cpumask)
{
struct opp_device *opp_dev;
struct opp_table *opp_table;