diff options
author | Lee Jones <lee.jones@linaro.org> | 2015-10-28 19:53:04 +0300 |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2016-01-14 11:44:04 +0300 |
commit | 997eea4691c5475765566dbaeb38bb60700c54bb (patch) | |
tree | b8f6d46f7fe016ce3ffa6e4a4146e1ab80acd712 /drivers/mfd/da9052-irq.c | |
parent | 5b7b2ac1529429c22aacc7cbd6704d6c267e8a9c (diff) | |
download | linux-997eea4691c5475765566dbaeb38bb60700c54bb.tar.xz |
mfd: da9052-irq: Fix trivial 'space before comma' error
ERROR: space prohibited before that ',' (ctx:WxW)
+ da9052_free_irq(da9052, DA9052_IRQ_ADC_EOM , da9052);
total: 1 errors, 0 warnings, 290 lines checked
Cc: Support Opensource <support.opensource@diasemi.com>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Diffstat (limited to 'drivers/mfd/da9052-irq.c')
-rw-r--r-- | drivers/mfd/da9052-irq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mfd/da9052-irq.c b/drivers/mfd/da9052-irq.c index f4cb4613140b..cd4ca849ca44 100644 --- a/drivers/mfd/da9052-irq.c +++ b/drivers/mfd/da9052-irq.c @@ -283,7 +283,7 @@ regmap_err: int da9052_irq_exit(struct da9052 *da9052) { - da9052_free_irq(da9052, DA9052_IRQ_ADC_EOM , da9052); + da9052_free_irq(da9052, DA9052_IRQ_ADC_EOM, da9052); regmap_del_irq_chip(da9052->chip_irq, da9052->irq_data); return 0; |