Commit c06f308a authored by Lee Jones's avatar Lee Jones

mfd: twl6040: Fix 'insert space after ','', error

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: default avatarLee Jones <lee.jones@linaro.org>
parent b6c1cb4d
...@@ -700,7 +700,7 @@ static int twl6040_probe(struct i2c_client *client, ...@@ -700,7 +700,7 @@ static int twl6040_probe(struct i2c_client *client,
} }
ret = regmap_add_irq_chip(twl6040->regmap, twl6040->irq, IRQF_ONESHOT, 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) if (ret < 0)
goto gpio_err; goto gpio_err;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment