aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Lezcano <daniel.lezcano@linaro.org>2013-04-23 04:54:43 -0400
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>2013-04-23 07:45:23 -0400
commit30dc72c6fa91c640e98ce5ef5ec33fb2beb41ad2 (patch)
treea77ecc23dfc0fe8d8f0fe57f6728ff85bc07aee7
parent0b210d96a6f9f8fc10bca482ca6f6d87bf52927e (diff)
ARM: kirkwood: cpuidle: use init/exit common routine
Remove the duplicated code and use the cpuidle common code for initialization. Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org> Tested-by: Andrew Lunn <andrew@lunn.ch> Acked-by: Andrew Lunn <andrew@lunn.ch> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
-rw-r--r--drivers/cpuidle/cpuidle-kirkwood.c17
1 files changed, 2 insertions, 15 deletions
diff --git a/drivers/cpuidle/cpuidle-kirkwood.c b/drivers/cpuidle/cpuidle-kirkwood.c
index 6f3152436983..53290e1f86c7 100644
--- a/drivers/cpuidle/cpuidle-kirkwood.c
+++ b/drivers/cpuidle/cpuidle-kirkwood.c
@@ -52,9 +52,6 @@ static struct cpuidle_driver kirkwood_idle_driver = {
52 }, 52 },
53 .state_count = KIRKWOOD_MAX_STATES, 53 .state_count = KIRKWOOD_MAX_STATES,
54}; 54};
55static struct cpuidle_device *device;
56
57static DEFINE_PER_CPU(struct cpuidle_device, kirkwood_cpuidle_device);
58 55
59/* Initialize CPU idle by registering the idle states */ 56/* Initialize CPU idle by registering the idle states */
60static int kirkwood_cpuidle_probe(struct platform_device *pdev) 57static int kirkwood_cpuidle_probe(struct platform_device *pdev)
@@ -69,22 +66,12 @@ static int kirkwood_cpuidle_probe(struct platform_device *pdev)
69 if (IS_ERR(ddr_operation_base)) 66 if (IS_ERR(ddr_operation_base))
70 return PTR_ERR(ddr_operation_base); 67 return PTR_ERR(ddr_operation_base);
71 68
72 device = &per_cpu(kirkwood_cpuidle_device, smp_processor_id()); 69 return cpuidle_register(&kirkwood_idle_driver, NULL);
73 device->state_count = KIRKWOOD_MAX_STATES;
74
75 cpuidle_register_driver(&kirkwood_idle_driver);
76 if (cpuidle_register_device(device)) {
77 pr_err("kirkwood_init_cpuidle: Failed registering\n");
78 return -EIO;
79 }
80 return 0;
81} 70}
82 71
83int kirkwood_cpuidle_remove(struct platform_device *pdev) 72int kirkwood_cpuidle_remove(struct platform_device *pdev)
84{ 73{
85 cpuidle_unregister_device(device); 74 cpuidle_unregister(&kirkwood_idle_driver);
86 cpuidle_unregister_driver(&kirkwood_idle_driver);
87
88 return 0; 75 return 0;
89} 76}
90 77