mfd: twl6040: Fix 'insert space after ','', error
authorLee Jones <lee.jones@linaro.org>
Mon, 21 Jul 2014 12:13:48 +0000 (13:13 +0100)
committerLee Jones <lee.jones@linaro.org>
Tue, 22 Jul 2014 12:17:07 +0000 (13:17 +0100)
This is part of an effort to clean-up the MFD subsystem.

ERROR: space required after that ',' (ctx:VxO)
+                                 0, &twl6040_irq_chip,&twl6040->irq_data);
                                                      ^

ERROR: space required before that '&' (ctx:OxV)
+                                 0, &twl6040_irq_chip,&twl6040->irq_data);
                                                       ^

total: 2 errors, 0 warnings, 816 lines checked

Signed-off-by: Lee Jones <lee.jones@linaro.org>
drivers/mfd/twl6040.c

index ae26d84b3a595088e9261fb31be8efae6db6f0d9..f9c06c542a41ca96544885dff8c4b99630edd434 100644 (file)
@@ -700,7 +700,7 @@ static int twl6040_probe(struct i2c_client *client,
        }
 
        ret = regmap_add_irq_chip(twl6040->regmap, twl6040->irq, IRQF_ONESHOT,
-                                 0, &twl6040_irq_chip,&twl6040->irq_data);
+                                 0, &twl6040_irq_chip, &twl6040->irq_data);
        if (ret < 0)
                goto gpio_err;
 
This page took 0.025236 seconds and 5 git commands to generate.