regmap: irq: Clarify error message when we fail to request primary IRQ
authorMark Brown <broonie@opensource.wolfsonmicro.com>
Tue, 19 Mar 2013 10:45:04 +0000 (10:45 +0000)
committerMark Brown <broonie@opensource.wolfsonmicro.com>
Tue, 19 Mar 2013 10:50:56 +0000 (10:50 +0000)
Display the name for the chip rather than just the primary IRQ so it is
clearer what exactly has failed.

Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
drivers/base/regmap/regmap-irq.c

index 020ea2b..1643e88 100644 (file)
@@ -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;
        }