aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mfd
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/mfd')
-rw-r--r--drivers/mfd/stmpe.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/mfd/stmpe.c b/drivers/mfd/stmpe.c
index c94f521f392..79e88d1fd99 100644
--- a/drivers/mfd/stmpe.c
+++ b/drivers/mfd/stmpe.c
@@ -294,12 +294,14 @@ static struct resource stmpe_gpio_resources[] = {
294 294
295static struct mfd_cell stmpe_gpio_cell = { 295static struct mfd_cell stmpe_gpio_cell = {
296 .name = "stmpe-gpio", 296 .name = "stmpe-gpio",
297 .of_compatible = "st,stmpe-gpio",
297 .resources = stmpe_gpio_resources, 298 .resources = stmpe_gpio_resources,
298 .num_resources = ARRAY_SIZE(stmpe_gpio_resources), 299 .num_resources = ARRAY_SIZE(stmpe_gpio_resources),
299}; 300};
300 301
301static struct mfd_cell stmpe_gpio_cell_noirq = { 302static struct mfd_cell stmpe_gpio_cell_noirq = {
302 .name = "stmpe-gpio", 303 .name = "stmpe-gpio",
304 .of_compatible = "st,stmpe-gpio",
303 /* gpio cell resources consist of an irq only so no resources here */ 305 /* gpio cell resources consist of an irq only so no resources here */
304}; 306};
305 307