From: Dmitry Torokhov Date: Tue, 18 Apr 2017 18:08:33 +0000 (-0700) Subject: ARM: pxa/raumfeld: fix compile error in rotary controller resources X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=312ec92daee499f4f1be86aaf07d6d9bfdaed795;p=GitHub%2Fmoto-9609%2Fandroid_kernel_motorola_exynos9610.git 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 Signed-off-by: Dmitry Torokhov --- 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),