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

reset: sti/syscfg: replace comma with semicolon

Fixes a checkpatch warning:

WARNING: Possible comma where semicolon could be used
#156: FILE: drivers/reset/sti/reset-syscfg.c:156:
+ rc->rst.ops = &syscfg_reset_ops,
+ rc->rst.of_node = dev->of_node;

Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>

+1 -1
+1 -1
drivers/reset/sti/reset-syscfg.c
··· 153 153 if (!rc->channels) 154 154 return -ENOMEM; 155 155 156 - rc->rst.ops = &syscfg_reset_ops, 156 + rc->rst.ops = &syscfg_reset_ops; 157 157 rc->rst.of_node = dev->of_node; 158 158 rc->rst.nr_resets = data->nr_channels; 159 159 rc->active_low = data->active_low;