diff options
author | Laurent Navet <laurent.navet@gmail.com> | 2013-03-20 08:16:04 -0400 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2013-03-27 11:05:18 -0400 |
commit | 195c65e83ccc0094bc4143176a1b21de2ba9237b (patch) | |
tree | 637cbf634549520873a76c1739e3762ea3579cc5 /drivers/gpio | |
parent | 8a29a409671f82a21a56aeb42835f99795d0deb3 (diff) |
gpio: gpio-tps65910.c: fix checkpatch error
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>
Diffstat (limited to 'drivers/gpio')
-rw-r--r-- | drivers/gpio/gpio-tps65910.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpio/gpio-tps65910.c b/drivers/gpio/gpio-tps65910.c index 5083825a0348..06146219d9d2 100644 --- a/drivers/gpio/gpio-tps65910.c +++ b/drivers/gpio/gpio-tps65910.c | |||
@@ -133,7 +133,7 @@ static int tps65910_gpio_probe(struct platform_device *pdev) | |||
133 | tps65910_gpio->gpio_chip.owner = THIS_MODULE; | 133 | tps65910_gpio->gpio_chip.owner = THIS_MODULE; |
134 | tps65910_gpio->gpio_chip.label = tps65910->i2c_client->name; | 134 | tps65910_gpio->gpio_chip.label = tps65910->i2c_client->name; |
135 | 135 | ||
136 | switch(tps65910_chip_id(tps65910)) { | 136 | switch (tps65910_chip_id(tps65910)) { |
137 | case TPS65910: | 137 | case TPS65910: |
138 | tps65910_gpio->gpio_chip.ngpio = TPS65910_NUM_GPIO; | 138 | tps65910_gpio->gpio_chip.ngpio = TPS65910_NUM_GPIO; |
139 | break; | 139 | break; |