X-Git-Url: http://git.cascardo.info/?a=blobdiff_plain;f=Documentation%2Fcpu-freq%2Fcore.txt;h=4bc7287806de461823b2a3dedeb84322ad522a80;hb=e55884d2c6ac3ae50e49a1f6fe38601a91181719;hp=ba78e7c2a0697eda85673227309ba7178d311099;hpb=e9f57ebcba563e0cd532926cab83c92bb4d79360;p=cascardo%2Flinux.git diff --git a/Documentation/cpu-freq/core.txt b/Documentation/cpu-freq/core.txt index ba78e7c2a069..4bc7287806de 100644 --- a/Documentation/cpu-freq/core.txt +++ b/Documentation/cpu-freq/core.txt @@ -96,7 +96,7 @@ new - new frequency For details about OPP, see Documentation/power/opp.txt dev_pm_opp_init_cpufreq_table - cpufreq framework typically is initialized with - cpufreq_frequency_table_cpuinfo which is provided with the list of + cpufreq_table_validate_and_show() which is provided with the list of frequencies that are available for operation. This function provides a ready to use conversion routine to translate the OPP layer's internal information about the available frequencies into a format readily @@ -110,7 +110,7 @@ dev_pm_opp_init_cpufreq_table - cpufreq framework typically is initialized with /* Do things */ r = dev_pm_opp_init_cpufreq_table(dev, &freq_table); if (!r) - cpufreq_frequency_table_cpuinfo(policy, freq_table); + cpufreq_table_validate_and_show(policy, freq_table); /* Do other things */ }