Skip to content

Commit ff76898

Browse files
vireshkrafaeljw
authored andcommitted
cpufreq: dt-platdev: Add some missing platforms to the blacklist
Commit edeec42 (cpufreq: dt-platdev: Automatically create cpufreq device with OPP v2) missed adding few platforms to the blacklist which create the cpufreq-dt device from their own drivers, after some dependencies are sorted out. And for those platforms, both the platform specific driver and the cpufreq-dt-platdev driver try to create the cpufreq-dt device now. Fix that by including those platforms in the blacklist. This doesn't include the TI platforms, for which there is a separate patch. Fixes: edeec42 (cpufreq: dt-cpufreq: platdev Automatically create device with OPP v2) Signed-off-by: Viresh Kumar <[email protected]> Signed-off-by: Rafael J. Wysocki <[email protected]>
1 parent 2bd6bf0 commit ff76898

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

drivers/cpufreq/cpufreq-dt-platdev.c

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,18 @@ static const struct of_device_id whitelist[] __initconst = {
106106
* platforms using "operating-points-v2" property.
107107
*/
108108
static const struct of_device_id blacklist[] __initconst = {
109+
{ .compatible = "calxeda,highbank", },
110+
{ .compatible = "calxeda,ecx-2000", },
111+
112+
{ .compatible = "marvell,armadaxp", },
113+
114+
{ .compatible = "nvidia,tegra124", },
115+
116+
{ .compatible = "st,stih407", },
117+
{ .compatible = "st,stih410", },
118+
119+
{ .compatible = "sigma,tango4", },
120+
109121
{ }
110122
};
111123

0 commit comments

Comments
 (0)