Skip to content

Commit

Permalink
mtd: nand: timings: Reorder tRR_min def in mode 0
Browse files Browse the repository at this point in the history
In the ONFI spec, the tRR_min entry is defined before the tRST_max one.
Reoder the definition to make it easier to review.

Signed-off-by: Boris Brezillon <boris.brezillon@free-electrons.com>
  • Loading branch information
Boris Brezillon committed Sep 23, 2016
1 parent 74a332e commit 57d419a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/mtd/nand/nand_timings.c
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ static const struct nand_sdr_timings onfi_sdr_timings[] = {
.tRHZ_max = 200000,
.tRLOH_min = 0,
.tRP_min = 50000,
.tRR_min = 40000,
.tRST_max = 250000000000ULL,
.tWB_max = 200000,
.tRR_min = 40000,
.tWC_min = 100000,
.tWH_min = 30000,
.tWHR_min = 120000,
Expand Down

0 comments on commit 57d419a

Please sign in to comment.