summaryrefslogtreecommitdiff
path: root/arch/arm/mach-pxa
diff options
context:
space:
mode:
authorDmitry Torokhov <dmitry.torokhov@gmail.com>2017-04-18 11:08:33 -0700
committerDmitry Torokhov <dmitry.torokhov@gmail.com>2017-04-18 11:28:38 -0700
commit312ec92daee499f4f1be86aaf07d6d9bfdaed795 (patch)
treef1c33f8ae48743e34a300c58adcbe227487d932a /arch/arm/mach-pxa
parent153292e24aeb0ac9489cf5d19abf8357f5f20cb9 (diff)
ARM: pxa/raumfeld: fix compile error in rotary controller resources
When switching rotary controlelr from plain IRQ number to IRQ resource, I messed up the syntax. Fixes: d422be5f62ef ("Input: eeti_ts - expect platform code to set ... ") Reported-by: kbuild test robot <fengguang.wu@intel.com> Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Diffstat (limited to 'arch/arm/mach-pxa')
-rw-r--r--arch/arm/mach-pxa/raumfeld.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-pxa/raumfeld.c b/arch/arm/mach-pxa/raumfeld.c
index b55965ee43fb..e2c97728b3c6 100644
--- a/arch/arm/mach-pxa/raumfeld.c
+++ b/arch/arm/mach-pxa/raumfeld.c
@@ -973,7 +973,7 @@ static struct gpiod_lookup_table raumfeld_controller_gpios_table = {
},
};
-static const struct resource raumfeld_controller_resources[] = __initconst {
+static const struct resource raumfeld_controller_resources[] __initconst = {
{
.start = PXA_GPIO_TO_IRQ(GPIO_TOUCH_IRQ),
.end = PXA_GPIO_TO_IRQ(GPIO_TOUCH_IRQ),