Skip to content

Commit

Permalink
gpio: gpio-tps65910.c: fix checkpatch error
Browse files Browse the repository at this point in the history
Fix :
 gpio/gpio-tps65910.c:136: ERROR: space required before the open parenthesis '('

Signed-off-by: Laurent Navet <laurent.navet@gmail.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
  • Loading branch information
Laurent Navet authored and Linus Walleij committed Mar 27, 2013
1 parent 8a29a40 commit 195c65e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/gpio/gpio-tps65910.c
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ static int tps65910_gpio_probe(struct platform_device *pdev)
tps65910_gpio->gpio_chip.owner = THIS_MODULE;
tps65910_gpio->gpio_chip.label = tps65910->i2c_client->name;

switch(tps65910_chip_id(tps65910)) {
switch (tps65910_chip_id(tps65910)) {
case TPS65910:
tps65910_gpio->gpio_chip.ngpio = TPS65910_NUM_GPIO;
break;
Expand Down

0 comments on commit 195c65e

Please sign in to comment.