diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2012-11-20 10:46:30 +0400 |
---|---|---|
committer | MyungJoo Ham <myungjoo.ham@samsung.com> | 2012-11-21 15:01:15 +0400 |
commit | 8117cc3a0cf31533b31fb106663c2529410726df (patch) | |
tree | 454917c7f3e9bdb22ede5dd46160ac0b110d961c /drivers/extcon/extcon-max8997.c | |
parent | 1967fa08d902cbf1967a29acd2e82628cfb7c7f4 (diff) | |
download | linux-8117cc3a0cf31533b31fb106663c2529410726df.tar.xz |
extcon: max8997: Fix checkpatch error
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>
Diffstat (limited to 'drivers/extcon/extcon-max8997.c')
-rw-r--r-- | drivers/extcon/extcon-max8997.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/extcon/extcon-max8997.c b/drivers/extcon/extcon-max8997.c index a46c82f31837..f06e60a3cb87 100644 --- a/drivers/extcon/extcon-max8997.c +++ b/drivers/extcon/extcon-max8997.c @@ -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, |