Skip to content

Commit

Permalink
Merge remote-tracking branch 'regmap/topic/irq' into regmap-next
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark Brown committed Apr 16, 2013
2 parents 5b3b448 + eed456f commit 7f47db4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion drivers/base/regmap/regmap-irq.c
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,8 @@ int regmap_add_irq_chip(struct regmap *map, int irq, int irq_flags,
ret = request_threaded_irq(irq, NULL, regmap_irq_thread, irq_flags,
chip->name, d);
if (ret != 0) {
dev_err(map->dev, "Failed to request IRQ %d: %d\n", irq, ret);
dev_err(map->dev, "Failed to request IRQ %d for %s: %d\n",
irq, chip->name, ret);
goto err_domain;
}

Expand Down

0 comments on commit 7f47db4

Please sign in to comment.