@@ -34,6 +34,9 @@ static const struct of_device_id compatible_machine_match[] = {
{ .compatible = "xlnx,zynq-7000", .data = "cpufreq-dt" },
+ { .compatible = "calxeda,highbank", .data = "cpufreq-dt" },
+ { .compatible = "calxeda,ecx-2000", .data = "cpufreq-dt" },
+
/* BLACKLIST of existing users of arm-bL-cpufreq-dt below */
/* BLACKLIST of existing users of other drivers below */
@@ -20,7 +20,6 @@
#include <linux/err.h>
#include <linux/of.h>
#include <linux/pl320-ipc.h>
-#include <linux/platform_device.h>
#define HB_CPUFREQ_CHANGE_NOTE 0x80000001
#define HB_CPUFREQ_IPC_LEN 7
@@ -60,7 +59,6 @@ static struct notifier_block hb_cpufreq_clk_nb = {
static int hb_cpufreq_driver_init(void)
{
- struct platform_device_info devinfo = { .name = "cpufreq-dt", };
struct device *cpu_dev;
struct clk *cpu_clk;
struct device_node *np;
@@ -95,9 +93,6 @@ static int hb_cpufreq_driver_init(void)
goto out_put_node;
}
- /* Instantiate cpufreq-dt */
- platform_device_register_full(&devinfo);
-
out_put_node:
of_node_put(np);
return ret;
We now have a common interface for create platform device required to probe cpufreq-dt driver (and others as well). Lets create devices from dt_device.c instead of platform specific code. For calxeda, we are updating the blacklist instead of DT because the newer kernel should be backwards compatible with older DT as well. We can update the "compatible" property in DT but it wouldn't make a difference as we already have imx in the blacklist. Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org> --- drivers/cpufreq/dt_device.c | 3 +++ drivers/cpufreq/highbank-cpufreq.c | 5 ----- 2 files changed, 3 insertions(+), 5 deletions(-)