diff options
author | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2013-03-19 09:51:14 +0000 |
---|---|---|
committer | Samuel Ortiz <sameo@linux.intel.com> | 2013-04-08 15:20:57 +0200 |
commit | 7994c664bdf365124a920457f9c3c9c111f89bcf (patch) | |
tree | a973b8e33a6fba1b74f58a37b071e60265198e45 /drivers/mfd/arizona-irq.c | |
parent | 4816bd1c6d5589135523b4263be2e1b8b8c97599 (diff) | |
download | linux-7994c664bdf365124a920457f9c3c9c111f89bcf.tar.bz2 |
mfd: arizona: Clarify error message for failed primary IRQ request
regmap has a very similar looking error, help identify where the error
comes from by changing the error message.
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
Diffstat (limited to 'drivers/mfd/arizona-irq.c')
-rw-r--r-- | drivers/mfd/arizona-irq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mfd/arizona-irq.c b/drivers/mfd/arizona-irq.c index 846262c59049..0aa39e2eb008 100644 --- a/drivers/mfd/arizona-irq.c +++ b/drivers/mfd/arizona-irq.c @@ -264,7 +264,7 @@ int arizona_irq_init(struct arizona *arizona) flags, "arizona", arizona); if (ret != 0) { - dev_err(arizona->dev, "Failed to request IRQ %d: %d\n", + dev_err(arizona->dev, "Failed to request primary IRQ %d: %d\n", arizona->irq, ret); goto err_main_irq; } |