aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-kirkwood/board-dnskw.c
diff options
context:
space:
mode:
authorAndrew Lunn <andrew@lunn.ch>2012-11-17 03:51:05 -0500
committerJason Cooper <jason@lakedaemon.net>2012-11-23 21:56:44 -0500
commit2c0e7ee61b335dea4bd2678591923c02703f4eeb (patch)
tree7e79c7b799dc3e68b4f3957f06163353379ebe1b /arch/arm/mach-kirkwood/board-dnskw.c
parent96ff0f5c7efd4a2205c48a76a6a1fcd2731e6128 (diff)
ARM: Kirkwood: Convert DNSKW to use gpio-poweroff.
Also enable the gpio-poweroff driver when DT is used. Signed-off-by: Andrew Lunn <andrew@lunn.ch> Tested-by: Jamie Lentin <jm@lentin.co.uk> Signed-off-by: Jason Cooper <jason@lakedaemon.net>
Diffstat (limited to 'arch/arm/mach-kirkwood/board-dnskw.c')
-rw-r--r--arch/arm/mach-kirkwood/board-dnskw.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/arch/arm/mach-kirkwood/board-dnskw.c b/arch/arm/mach-kirkwood/board-dnskw.c
index 2ac6c60578f6..903680182453 100644
--- a/arch/arm/mach-kirkwood/board-dnskw.c
+++ b/arch/arm/mach-kirkwood/board-dnskw.c
@@ -57,11 +57,6 @@ static unsigned int dnskw_mpp_config[] __initdata = {
57 0 57 0
58}; 58};
59 59
60static void dnskw_power_off(void)
61{
62 gpio_set_value(36, 1);
63}
64
65/* Register any GPIO for output and set the value */ 60/* Register any GPIO for output and set the value */
66static void __init dnskw_gpio_register(unsigned gpio, char *name, int def) 61static void __init dnskw_gpio_register(unsigned gpio, char *name, int def)
67{ 62{
@@ -80,13 +75,6 @@ void __init dnskw_init(void)
80 75
81 kirkwood_ge00_init(&dnskw_ge00_data); 76 kirkwood_ge00_init(&dnskw_ge00_data);
82 77
83 /* Register power-off GPIO. */
84 if (gpio_request(36, "dnskw:power:off") == 0
85 && gpio_direction_output(36, 0) == 0)
86 pm_power_off = dnskw_power_off;
87 else
88 pr_err("dnskw: failed to configure power-off GPIO\n");
89
90 /* Ensure power is supplied to both HDDs */ 78 /* Ensure power is supplied to both HDDs */
91 dnskw_gpio_register(39, "dnskw:power:sata0", 1); 79 dnskw_gpio_register(39, "dnskw:power:sata0", 1);
92 dnskw_gpio_register(40, "dnskw:power:sata1", 1); 80 dnskw_gpio_register(40, "dnskw:power:sata1", 1);