summaryrefslogtreecommitdiff
path: root/arch/arm/mach-sa1100/simpad.c
diff options
context:
space:
mode:
authorRussell King <rmk+kernel@armlinux.org.uk>2016-09-13 14:47:58 +0100
committerRussell King <rmk+kernel@armlinux.org.uk>2020-10-12 21:55:58 +0100
commit6664d56cfab39f9da97e1017bb02ee72ec706d3d (patch)
tree45add0f051fe49275963dc85a30e6e2feefba2f5 /arch/arm/mach-sa1100/simpad.c
parent99487e42f4da25bef11cb87efaacb0b5753151e5 (diff)
ARM: sa1100/simpad: correct GPIO for power button
Use the GPIO number rather than the interrupt number for the simpad power button. Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk>
Diffstat (limited to 'arch/arm/mach-sa1100/simpad.c')
-rw-r--r--arch/arm/mach-sa1100/simpad.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-sa1100/simpad.c b/arch/arm/mach-sa1100/simpad.c
index a7069d97e6f4..db46668cdad5 100644
--- a/arch/arm/mach-sa1100/simpad.c
+++ b/arch/arm/mach-sa1100/simpad.c
@@ -261,7 +261,7 @@ static void simpad_power_off(void)
static struct gpio_keys_button simpad_button_table[] = {
{
.code = KEY_POWER,
- .gpio = IRQ_GPIO_POWER_BUTTON,
+ .gpio = GPIO_POWER_BUTTON,
.active_low = 1,
.desc = "power button",
},