[PATCH 5/6] arm: exynos4-dt: statically add platform device for cpufreq-cpu0 platform driver
Shawn Guo
shawn.guo at linaro.org
Sun Jan 12 22:17:32 EST 2014
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
>
More information about the linux-arm-kernel
mailing list