diff options
author | Axel Lin <axel.lin@ingics.com> | 2015-02-13 08:04:42 -0500 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2015-03-06 05:17:36 -0500 |
commit | d32efe37966474b9d18a9110c89c091abef75602 (patch) | |
tree | 0ef7ba5efaa4574eda1e4deb0ba991cb6e2717ca | |
parent | 331758eef83620eef3f21289f0f44aba094d0503 (diff) |
gpio: vf610: Replaces comma between expression statements by semicolon
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
-rw-r--r-- | drivers/gpio/gpio-vf610.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/drivers/gpio/gpio-vf610.c b/drivers/gpio/gpio-vf610.c index 971c73964ef1..7bd9f209ffa8 100644 --- a/drivers/gpio/gpio-vf610.c +++ b/drivers/gpio/gpio-vf610.c | |||
@@ -244,16 +244,16 @@ static int vf610_gpio_probe(struct platform_device *pdev) | |||
244 | gc = &port->gc; | 244 | gc = &port->gc; |
245 | gc->of_node = np; | 245 | gc->of_node = np; |
246 | gc->dev = dev; | 246 | gc->dev = dev; |
247 | gc->label = "vf610-gpio", | 247 | gc->label = "vf610-gpio"; |
248 | gc->ngpio = VF610_GPIO_PER_PORT, | 248 | gc->ngpio = VF610_GPIO_PER_PORT; |
249 | gc->base = of_alias_get_id(np, "gpio") * VF610_GPIO_PER_PORT; | 249 | gc->base = of_alias_get_id(np, "gpio") * VF610_GPIO_PER_PORT; |
250 | 250 | ||
251 | gc->request = vf610_gpio_request, | 251 | gc->request = vf610_gpio_request; |
252 | gc->free = vf610_gpio_free, | 252 | gc->free = vf610_gpio_free; |
253 | gc->direction_input = vf610_gpio_direction_input, | 253 | gc->direction_input = vf610_gpio_direction_input; |
254 | gc->get = vf610_gpio_get, | 254 | gc->get = vf610_gpio_get; |
255 | gc->direction_output = vf610_gpio_direction_output, | 255 | gc->direction_output = vf610_gpio_direction_output; |
256 | gc->set = vf610_gpio_set, | 256 | gc->set = vf610_gpio_set; |
257 | 257 | ||
258 | ret = gpiochip_add(gc); | 258 | ret = gpiochip_add(gc); |
259 | if (ret < 0) | 259 | if (ret < 0) |