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: d422be5f62
("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>
This commit is contained in:
parent
153292e24a
commit
312ec92dae
|
@ -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),
|
||||
|
|
Loading…
Reference in New Issue