Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5e4249c6 authored by Viresh Kumar's avatar Viresh Kumar Committed by Rafael J. Wysocki
Browse files

cpufreq: zynq: Use generic platdev driver



The cpufreq-dt-platdev driver supports creation of cpufreq-dt platform
device now, reuse that and remove similar code from platform code.

Signed-off-by: default avatarViresh Kumar <viresh.kumar@linaro.org>
Acked-by: default avatarArnd Bergmann <arnd@arndb.de>
Signed-off-by: default avatarRafael J. Wysocki <rafael.j.wysocki@intel.com>
parent 117d4f59
Loading
Loading
Loading
Loading
+0 −2
Original line number Original line Diff line number Diff line
@@ -110,7 +110,6 @@ static void __init zynq_init_late(void)
 */
 */
static void __init zynq_init_machine(void)
static void __init zynq_init_machine(void)
{
{
	struct platform_device_info devinfo = { .name = "cpufreq-dt", };
	struct soc_device_attribute *soc_dev_attr;
	struct soc_device_attribute *soc_dev_attr;
	struct soc_device *soc_dev;
	struct soc_device *soc_dev;
	struct device *parent = NULL;
	struct device *parent = NULL;
@@ -145,7 +144,6 @@ static void __init zynq_init_machine(void)
	of_platform_populate(NULL, of_default_bus_match_table, NULL, parent);
	of_platform_populate(NULL, of_default_bus_match_table, NULL, parent);


	platform_device_register(&zynq_cpuidle_device);
	platform_device_register(&zynq_cpuidle_device);
	platform_device_register_full(&devinfo);
}
}


static void __init zynq_timer_init(void)
static void __init zynq_timer_init(void)
+2 −0
Original line number Original line Diff line number Diff line
@@ -68,6 +68,8 @@ static const struct of_device_id machines[] __initconst = {
	{ .compatible = "ti,omap3", },
	{ .compatible = "ti,omap3", },
	{ .compatible = "ti,omap4", },
	{ .compatible = "ti,omap4", },
	{ .compatible = "ti,omap5", },
	{ .compatible = "ti,omap5", },

	{ .compatible = "xlnx,zynq-7000", },
};
};


static int __init cpufreq_dt_platdev_init(void)
static int __init cpufreq_dt_platdev_init(void)