Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

leds-lm3642: convert comma to semicolon

Replace a comma between expression statements by a semicolon.

Signed-off-by: Zheng Yongjun <zhengyongjun3@huawei.com>
Signed-off-by: Pavel Machek <pavel@ucw.cz>

authored by

Zheng Yongjun and committed by
Pavel Machek
fcc96cef d9dfac54

+2 -2
+2 -2
drivers/leds/leds-lm3642.c
··· 339 339 chip->cdev_flash.max_brightness = 16; 340 340 chip->cdev_flash.brightness_set_blocking = lm3642_strobe_brightness_set; 341 341 chip->cdev_flash.default_trigger = "flash"; 342 - chip->cdev_flash.groups = lm3642_flash_groups, 342 + chip->cdev_flash.groups = lm3642_flash_groups; 343 343 err = led_classdev_register(&client->dev, &chip->cdev_flash); 344 344 if (err < 0) { 345 345 dev_err(chip->dev, "failed to register flash\n"); ··· 351 351 chip->cdev_torch.max_brightness = 8; 352 352 chip->cdev_torch.brightness_set_blocking = lm3642_torch_brightness_set; 353 353 chip->cdev_torch.default_trigger = "torch"; 354 - chip->cdev_torch.groups = lm3642_torch_groups, 354 + chip->cdev_torch.groups = lm3642_torch_groups; 355 355 err = led_classdev_register(&client->dev, &chip->cdev_torch); 356 356 if (err < 0) { 357 357 dev_err(chip->dev, "failed to register torch\n");