diff options
author | Martin Michlmayr <tbm@cyrius.com> | 2008-07-31 07:38:08 +0300 |
---|---|---|
committer | Lennert Buytenhek <buytenh@marvell.com> | 2008-08-09 15:17:28 +0200 |
commit | 5cebbd09fc06f4159f10f9f86bbd1517ac0279a2 (patch) | |
tree | 7305122f0c2f8dc0c935a9de7cea43d6f98e85c7 /arch/arm/mach-orion5x/ts409-setup.c | |
parent | 28ca8c802f71283d610656a207f3325c09e4585e (diff) | |
download | talos-obmc-linux-5cebbd09fc06f4159f10f9f86bbd1517ac0279a2.tar.gz talos-obmc-linux-5cebbd09fc06f4159f10f9f86bbd1517ac0279a2.zip |
[ARM] Orion: Export the reset button of the QNAP TS-409
The reset button on the QNAP TS-409 is available through gpio.
Signed-off-by: Martin Michlmayr <tbm@cyrius.com>
Signed-off-by: Lennert Buytenhek <buytenh@marvell.com>
Diffstat (limited to 'arch/arm/mach-orion5x/ts409-setup.c')
-rw-r--r-- | arch/arm/mach-orion5x/ts409-setup.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/arm/mach-orion5x/ts409-setup.c b/arch/arm/mach-orion5x/ts409-setup.c index 57d460c01996..b27d2b762081 100644 --- a/arch/arm/mach-orion5x/ts409-setup.c +++ b/arch/arm/mach-orion5x/ts409-setup.c @@ -208,10 +208,16 @@ static struct platform_device ts409_leds = { * Power button is attached to the PIC microcontroller ****************************************************************************/ +#define QNAP_TS409_GPIO_KEY_RESET 14 #define QNAP_TS409_GPIO_KEY_MEDIA 15 static struct gpio_keys_button qnap_ts409_buttons[] = { { + .code = KEY_RESTART, + .gpio = QNAP_TS409_GPIO_KEY_RESET, + .desc = "Reset Button", + .active_low = 1, + }, { .code = KEY_COPY, .gpio = QNAP_TS409_GPIO_KEY_MEDIA, .desc = "USB Copy Button", |