Skip to content

Commit

Permalink
mfd: fix da903x warning
Browse files Browse the repository at this point in the history
The da903x interrupt handler is retruning an int instead of an irqreturn_t.

Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
  • Loading branch information
Samuel Ortiz authored and Samuel Ortiz committed Apr 4, 2009
1 parent 895d9f0 commit fa15ce8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/mfd/da903x.c
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@ static void da903x_irq_work(struct work_struct *work)
enable_irq(chip->client->irq);
}

static int da903x_irq_handler(int irq, void *data)
static irqreturn_t da903x_irq_handler(int irq, void *data)
{
struct da903x_chip *chip = data;

Expand Down

0 comments on commit fa15ce8

Please sign in to comment.