diff options
author | Daniel Lezcano <daniel.lezcano@linaro.org> | 2013-09-21 18:41:02 +0200 |
---|---|---|
committer | Daniel Lezcano <daniel.lezcano@linaro.org> | 2013-10-07 16:46:59 +0200 |
commit | 3e8ceca6c76ec2d5ee47ece0420cf10d041cf58f (patch) | |
tree | f34d5780f17e44a2989d7a5ce86c054a4790762d /arch/arm | |
parent | 4aa88fbe6d6f78a8a464445eb6b55a360e3d3733 (diff) | |
download | op-kernel-dev-3e8ceca6c76ec2d5ee47ece0420cf10d041cf58f.zip op-kernel-dev-3e8ceca6c76ec2d5ee47ece0420cf10d041cf58f.tar.gz |
ARM: zynq: cpuidle: convert to platform driver
As the ux500 and the kirkwood driver, make the zynq driver a platform driver
Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
Acked-by: Michal Simek <michal.simek@xilinx.com>
Tested-by: Soren Brinkmann <soren.brinkmann@xilinx.com>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/mach-zynq/common.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/arm/mach-zynq/common.c b/arch/arm/mach-zynq/common.c index 5f25256..9a7bd13 100644 --- a/arch/arm/mach-zynq/common.c +++ b/arch/arm/mach-zynq/common.c @@ -44,6 +44,10 @@ static struct of_device_id zynq_of_bus_ids[] __initdata = { {} }; +static struct platform_device zynq_cpuidle_device = { + .name = "cpuidle-zynq", +}; + /** * zynq_init_machine - System specific initialization, intended to be * called from board specific initialization. @@ -56,6 +60,8 @@ static void __init zynq_init_machine(void) l2x0_of_init(0x02060000, 0xF0F0FFFF); of_platform_bus_probe(NULL, zynq_of_bus_ids, NULL); + + platform_device_register(&zynq_cpuidle_device); } static void __init zynq_timer_init(void) |