From 6664d56cfab39f9da97e1017bb02ee72ec706d3d Mon Sep 17 00:00:00 2001 From: Russell King Date: Tue, 13 Sep 2016 14:47:58 +0100 Subject: 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 --- arch/arm/mach-sa1100/simpad.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'arch/arm/mach-sa1100/simpad.c') 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", }, -- cgit