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

gpio: sama5d2-piobu: convert comma to semicolon

Replace comma between expressions with semicolons.

Using a ',' in place of a ';' can have unintended side effects. Although
that is not the case here, it is seems best to use ';' unless ',' is
intended.

Found by inspection. No functional change intended. Compile tested only.

Signed-off-by: Chen Ni <nichen@iscas.ac.cn>
Link: https://lore.kernel.org/r/20240905024245.1642989-1-nichen@iscas.ac.cn
Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>

authored by

Chen Ni and committed by
Bartosz Golaszewski
f4d08a8f ccaf8469

+9 -9
+9 -9
drivers/gpio/gpio-sama5d2-piobu.c
··· 191 191 192 192 piobu->chip.label = pdev->name; 193 193 piobu->chip.parent = &pdev->dev; 194 - piobu->chip.owner = THIS_MODULE, 195 - piobu->chip.get_direction = sama5d2_piobu_get_direction, 196 - piobu->chip.direction_input = sama5d2_piobu_direction_input, 197 - piobu->chip.direction_output = sama5d2_piobu_direction_output, 198 - piobu->chip.get = sama5d2_piobu_get, 199 - piobu->chip.set = sama5d2_piobu_set, 200 - piobu->chip.base = -1, 201 - piobu->chip.ngpio = PIOBU_NUM, 202 - piobu->chip.can_sleep = 0, 194 + piobu->chip.owner = THIS_MODULE; 195 + piobu->chip.get_direction = sama5d2_piobu_get_direction; 196 + piobu->chip.direction_input = sama5d2_piobu_direction_input; 197 + piobu->chip.direction_output = sama5d2_piobu_direction_output; 198 + piobu->chip.get = sama5d2_piobu_get; 199 + piobu->chip.set = sama5d2_piobu_set; 200 + piobu->chip.base = -1; 201 + piobu->chip.ngpio = PIOBU_NUM; 202 + piobu->chip.can_sleep = 0; 203 203 204 204 piobu->regmap = syscon_node_to_regmap(pdev->dev.of_node); 205 205 if (IS_ERR(piobu->regmap)) {