diff options
author | Lee Jones <lee.jones@linaro.org> | 2015-10-28 12:53:04 -0400 |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2016-01-14 03:44:04 -0500 |
commit | 997eea4691c5475765566dbaeb38bb60700c54bb (patch) | |
tree | b8f6d46f7fe016ce3ffa6e4a4146e1ab80acd712 /drivers/mfd | |
parent | 5b7b2ac1529429c22aacc7cbd6704d6c267e8a9c (diff) |
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')
-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: | |||
283 | 283 | ||
284 | int da9052_irq_exit(struct da9052 *da9052) | 284 | int da9052_irq_exit(struct da9052 *da9052) |
285 | { | 285 | { |
286 | da9052_free_irq(da9052, DA9052_IRQ_ADC_EOM , da9052); | 286 | da9052_free_irq(da9052, DA9052_IRQ_ADC_EOM, da9052); |
287 | regmap_del_irq_chip(da9052->chip_irq, da9052->irq_data); | 287 | regmap_del_irq_chip(da9052->chip_irq, da9052->irq_data); |
288 | 288 | ||
289 | return 0; | 289 | return 0; |