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 (Oracle) <rmk+kernel@armlinux.org.uk>2022-05-23 16:02:16 +0100
commitc103673e88b2d74f9207d0a85d333a07cd17bc2a (patch)
tree19fc2d0aa2951723ffdd8f8cc297bc9da3cd480d /arch/arm/mach-sa1100/simpad.c
parentc5a8c4bdd64f75b102114d682b95f8408fd3b555 (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",
},