Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d32efe37 authored by Axel Lin's avatar Axel Lin Committed by Linus Walleij
Browse files

gpio: vf610: Replaces comma between expression statements by semicolon

parent 331758ee
Loading
Loading
Loading
Loading
+8 −8
Original line number Diff line number Diff line
@@ -244,16 +244,16 @@ static int vf610_gpio_probe(struct platform_device *pdev)
	gc = &port->gc;
	gc->of_node = np;
	gc->dev = dev;
	gc->label = "vf610-gpio",
	gc->ngpio = VF610_GPIO_PER_PORT,
	gc->label = "vf610-gpio";
	gc->ngpio = VF610_GPIO_PER_PORT;
	gc->base = of_alias_get_id(np, "gpio") * VF610_GPIO_PER_PORT;

	gc->request = vf610_gpio_request,
	gc->free = vf610_gpio_free,
	gc->direction_input = vf610_gpio_direction_input,
	gc->get = vf610_gpio_get,
	gc->direction_output = vf610_gpio_direction_output,
	gc->set = vf610_gpio_set,
	gc->request = vf610_gpio_request;
	gc->free = vf610_gpio_free;
	gc->direction_input = vf610_gpio_direction_input;
	gc->get = vf610_gpio_get;
	gc->direction_output = vf610_gpio_direction_output;
	gc->set = vf610_gpio_set;

	ret = gpiochip_add(gc);
	if (ret < 0)