diff options
author | Daniel Lezcano <daniel.lezcano@linaro.org> | 2013-09-21 12:41:02 -0400 |
---|---|---|
committer | Daniel Lezcano <daniel.lezcano@linaro.org> | 2013-10-07 10:46:59 -0400 |
commit | 3e8ceca6c76ec2d5ee47ece0420cf10d041cf58f (patch) | |
tree | f34d5780f17e44a2989d7a5ce86c054a4790762d /arch/arm/mach-zynq | |
parent | 4aa88fbe6d6f78a8a464445eb6b55a360e3d3733 (diff) |
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/mach-zynq')
-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 5f252569c689..9a7bd137c8fd 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 = { | |||
44 | {} | 44 | {} |
45 | }; | 45 | }; |
46 | 46 | ||
47 | static struct platform_device zynq_cpuidle_device = { | ||
48 | .name = "cpuidle-zynq", | ||
49 | }; | ||
50 | |||
47 | /** | 51 | /** |
48 | * zynq_init_machine - System specific initialization, intended to be | 52 | * zynq_init_machine - System specific initialization, intended to be |
49 | * called from board specific initialization. | 53 | * called from board specific initialization. |
@@ -56,6 +60,8 @@ static void __init zynq_init_machine(void) | |||
56 | l2x0_of_init(0x02060000, 0xF0F0FFFF); | 60 | l2x0_of_init(0x02060000, 0xF0F0FFFF); |
57 | 61 | ||
58 | of_platform_bus_probe(NULL, zynq_of_bus_ids, NULL); | 62 | of_platform_bus_probe(NULL, zynq_of_bus_ids, NULL); |
63 | |||
64 | platform_device_register(&zynq_cpuidle_device); | ||
59 | } | 65 | } |
60 | 66 | ||
61 | static void __init zynq_timer_init(void) | 67 | static void __init zynq_timer_init(void) |