On Thu, Jan 09, 2014 at 09:29:24PM +0530, Thomas Abraham wrote: > +static struct platform_device cpufreq_device = { > + .name = "cpufreq-cpu0", > + .id = -1, > +}; > + > static void __init exynos4_dt_machine_init(void) > { > exynos_cpuidle_init(); > exynos_cpufreq_init(); > > + platform_device_register(&cpufreq_device); It can just be: platform_device_register_simple("cpufreq-cpu0", -1, NULL, 0); Shawn > of_platform_populate(NULL, of_default_bus_match_table, NULL, NULL); > } > > -- > 1.6.6.rc2 > -- To unsubscribe from this list: send the line "unsubscribe cpufreq" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html