Skip to content

Commit

Permalink
mtd: cfi: indent some if statements
Browse files Browse the repository at this point in the history
The break statements should be indented another tab.

Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Reviewed-by: Jingoo Han <jg1.han@samsung.com>
Signed-off-by: Brian Norris <computersforpeace@gmail.com>
  • Loading branch information
Dan Carpenter authored and computersforpeace committed May 21, 2014
1 parent 66507c7 commit 555b8d1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions drivers/mtd/chips/cfi_cmdset_0020.c
Original file line number Diff line number Diff line change
Expand Up @@ -961,7 +961,7 @@ static int cfi_staa_erase_varsize(struct mtd_info *mtd,
chipnum++;

if (chipnum >= cfi->numchips)
break;
break;
}
}

Expand Down Expand Up @@ -1170,7 +1170,7 @@ static int cfi_staa_lock(struct mtd_info *mtd, loff_t ofs, uint64_t len)
chipnum++;

if (chipnum >= cfi->numchips)
break;
break;
}
}
return 0;
Expand Down
2 changes: 1 addition & 1 deletion drivers/mtd/chips/cfi_util.c
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ int cfi_varsize_frob(struct mtd_info *mtd, varsize_frob_t frob,
chipnum++;

if (chipnum >= cfi->numchips)
break;
break;
}
}

Expand Down

0 comments on commit 555b8d1

Please sign in to comment.