On 25-03-21, 13:15, quanyang.wang wrote:
Thank you for pointing it out. Do you mean that even ifYes.
dev_pm_opp_of_cpumask_add_table returns
an error, dev_pm_opp_get_opp_count may still return count > 0 because
someone may call dev_pm_opp_add
to add OPP to cpu succcessfully at somewhere else?
There are two ways we can add OPPs today:
- Statically via device tree. This is what
dev_pm_opp_of_cpumask_add_table() tries to do.
- Dynamically via call to dev_pm_opp_add(), which I described earlier.
What failed here is the static way of adding OPPs, we still need to
check if OPPs were added dynamically.