Skip to content

Commit

Permalink
mfd: da9052-irq: Fix trivial 'space before comma' error
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Lee Jones committed Jan 14, 2016
1 parent 5b7b2ac commit 997eea4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/mfd/da9052-irq.c
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ int da9052_irq_init(struct da9052 *da9052)

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;
Expand Down

0 comments on commit 997eea4

Please sign in to comment.