aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mfd/ab8500-core.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/mfd/ab8500-core.c')
-rw-r--r--drivers/mfd/ab8500-core.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/mfd/ab8500-core.c b/drivers/mfd/ab8500-core.c
index 6d6666b0f1b2..0f1b9b788d07 100644
--- a/drivers/mfd/ab8500-core.c
+++ b/drivers/mfd/ab8500-core.c
@@ -407,6 +407,11 @@ static void ab8500_irq_unmask(struct irq_data *data)
407 } 407 }
408} 408}
409 409
410static int ab8500_irq_set_type(struct irq_data *data, unsigned int type)
411{
412 return 0;
413}
414
410static struct irq_chip ab8500_irq_chip = { 415static struct irq_chip ab8500_irq_chip = {
411 .name = "ab8500", 416 .name = "ab8500",
412 .irq_bus_lock = ab8500_irq_lock, 417 .irq_bus_lock = ab8500_irq_lock,
@@ -414,6 +419,7 @@ static struct irq_chip ab8500_irq_chip = {
414 .irq_mask = ab8500_irq_mask, 419 .irq_mask = ab8500_irq_mask,
415 .irq_disable = ab8500_irq_mask, 420 .irq_disable = ab8500_irq_mask,
416 .irq_unmask = ab8500_irq_unmask, 421 .irq_unmask = ab8500_irq_unmask,
422 .irq_set_type = ab8500_irq_set_type,
417}; 423};
418 424
419static int ab8500_handle_hierarchical_line(struct ab8500 *ab8500, 425static int ab8500_handle_hierarchical_line(struct ab8500 *ab8500,