Skip to content

Commit

Permalink
extcon: max8997: Fix checkpatch error
Browse files Browse the repository at this point in the history
Fixes the following checkpatch error:
ERROR: space required after that ',' (ctx:VxV)
460: FILE: extcon/extcon-max8997.c:460:
		ret = request_threaded_irq(virq, NULL,max8997_muic_irq_handler,
		                                     ^

Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com>
Signed-off-by: Myungjoo Ham <myungjoo.ham@samsung.com>
  • Loading branch information
Sachin Kamat authored and MyungJoo Ham committed Nov 21, 2012
1 parent 1967fa0 commit 8117cc3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/extcon/extcon-max8997.c
Original file line number Diff line number Diff line change
Expand Up @@ -459,7 +459,7 @@ static int __devinit max8997_muic_probe(struct platform_device *pdev)
}
muic_irq->virq = virq;

ret = request_threaded_irq(virq, NULL,max8997_muic_irq_handler,
ret = request_threaded_irq(virq, NULL, max8997_muic_irq_handler,
0, muic_irq->name, info);
if (ret) {
dev_err(&pdev->dev,
Expand Down

0 comments on commit 8117cc3

Please sign in to comment.