cpufreq: Convert to using %pOF instead of full_name
Now that we have a custom printf format specifier, convert users of full_name to use %pOF instead. This is preparation to remove storing of the full path string for each node. Signed-off-by: Rob Herring <robh@kernel.org> Acked-by: Viresh Kumar <viresh.kumar@linaro.org> Acked-by: Patrice Chotard <patrice.chotard@st.com> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
This commit is contained in:
parent
e948bc8fbe
commit
cc5a7a7494
2 changed files with 5 additions and 5 deletions
|
@ -516,7 +516,7 @@ static int __init g5_pm72_cpufreq_init(struct device_node *cpunode)
|
||||||
goto bail;
|
goto bail;
|
||||||
}
|
}
|
||||||
|
|
||||||
DBG("cpufreq: i2c clock chip found: %s\n", hwclock->full_name);
|
DBG("cpufreq: i2c clock chip found: %pOF\n", hwclock);
|
||||||
|
|
||||||
/* Now get all the platform functions */
|
/* Now get all the platform functions */
|
||||||
pfunc_cpu_getfreq =
|
pfunc_cpu_getfreq =
|
||||||
|
|
|
@ -65,8 +65,8 @@ static int sti_cpufreq_fetch_major(void) {
|
||||||
ret = of_property_read_u32_index(np, "st,syscfg",
|
ret = of_property_read_u32_index(np, "st,syscfg",
|
||||||
MAJOR_ID_INDEX, &major_offset);
|
MAJOR_ID_INDEX, &major_offset);
|
||||||
if (ret) {
|
if (ret) {
|
||||||
dev_err(dev, "No major number offset provided in %s [%d]\n",
|
dev_err(dev, "No major number offset provided in %pOF [%d]\n",
|
||||||
np->full_name, ret);
|
np, ret);
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -92,8 +92,8 @@ static int sti_cpufreq_fetch_minor(void)
|
||||||
MINOR_ID_INDEX, &minor_offset);
|
MINOR_ID_INDEX, &minor_offset);
|
||||||
if (ret) {
|
if (ret) {
|
||||||
dev_err(dev,
|
dev_err(dev,
|
||||||
"No minor number offset provided %s [%d]\n",
|
"No minor number offset provided %pOF [%d]\n",
|
||||||
np->full_name, ret);
|
np, ret);
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue