Skip to content

Commit

Permalink
reset: zynqmp: replace spaces with tabs
Browse files Browse the repository at this point in the history
Fixes checkpatch issues:

  ERROR: code indent should use tabs where possible
  #86: FILE: drivers/reset/reset-zynqmp.c:86:
  +        .reset_id = 0,$

  WARNING: please, no spaces at the start of a line
  #86: FILE: drivers/reset/reset-zynqmp.c:86:
  +        .reset_id = 0,$

  ERROR: code indent should use tabs where possible
  #87: FILE: drivers/reset/reset-zynqmp.c:87:
  +        .num_resets = VERSAL_NR_RESETS,$

  WARNING: please, no spaces at the start of a line
  #87: FILE: drivers/reset/reset-zynqmp.c:87:
  +        .num_resets = VERSAL_NR_RESETS,$

Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
State: pending
  • Loading branch information
pH5 authored and Michal Simek committed Mar 22, 2021
1 parent 706faab commit 04847a0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/reset/reset-zynqmp.c
Expand Up @@ -84,8 +84,8 @@ static const struct zynqmp_reset_soc_data zynqmp_reset_data = {
};

static const struct zynqmp_reset_soc_data versal_reset_data = {
.reset_id = 0,
.num_resets = VERSAL_NR_RESETS,
.reset_id = 0,
.num_resets = VERSAL_NR_RESETS,
};

static const struct reset_control_ops zynqmp_reset_ops = {
Expand Down

0 comments on commit 04847a0

Please sign in to comment.