Skip to content

Commit

Permalink
reset: sti/syscfg: replace comma with semicolon
Browse files Browse the repository at this point in the history
Fixes a checkpatch warning:

  WARNING: Possible comma where semicolon could be used
  torvalds#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 <[email protected]>
  • Loading branch information
pH5 committed May 10, 2021
1 parent 05cf8ff commit 71400c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/reset/sti/reset-syscfg.c
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ static int syscfg_reset_controller_register(struct device *dev,
if (!rc->channels)
return -ENOMEM;

rc->rst.ops = &syscfg_reset_ops,
rc->rst.ops = &syscfg_reset_ops;
rc->rst.of_node = dev->of_node;
rc->rst.nr_resets = data->nr_channels;
rc->active_low = data->active_low;
Expand Down

0 comments on commit 71400c3

Please sign in to comment.