Skip to content

Commit

Permalink
mfd: max77693: Fix up bug of wrong interrupt number
Browse files Browse the repository at this point in the history
The max77693 MFD device use irq domain method which has hardware interrupt
number and virtual interrupt number getting through irq domain mapping.
This patch use hardware interrupt number instead of virtual interrupt number
to get struct irq_data.

Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
  • Loading branch information
Chanwoo Choi authored and Samuel Ortiz committed Nov 4, 2013
1 parent 4c78b52 commit 424aab7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion drivers/mfd/max77693-irq.c
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,8 @@ static void max77693_irq_sync_unlock(struct irq_data *data)
static const inline struct max77693_irq_data *
irq_to_max77693_irq(struct max77693_dev *max77693, int irq)
{
return &max77693_irqs[irq];
struct irq_data *data = irq_get_irq_data(irq);
return &max77693_irqs[data->hwirq];
}

static void max77693_irq_mask(struct irq_data *data)
Expand Down

0 comments on commit 424aab7

Please sign in to comment.