Skip to content

Commit

Permalink
reset: sti: add a missing blank line after declaration
Browse files Browse the repository at this point in the history
This just fixes a checkpatch warning, no functional change.

Signed-off-by: Philipp Zabel <[email protected]>
Acked-by: Maxime Coquelin <[email protected]>
  • Loading branch information
pH5 committed Nov 16, 2015
1 parent 9a4cc89 commit 0437838
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion drivers/reset/sti/reset-syscfg.c
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,9 @@ static int syscfg_reset_deassert(struct reset_controller_dev *rcdev,
static int syscfg_reset_dev(struct reset_controller_dev *rcdev,
unsigned long idx)
{
int err = syscfg_reset_assert(rcdev, idx);
int err;

err = syscfg_reset_assert(rcdev, idx);
if (err)
return err;

Expand Down

0 comments on commit 0437838

Please sign in to comment.