diff options
author | Boris Brezillon <boris.brezillon@free-electrons.com> | 2016-06-14 16:21:07 +0200 |
---|---|---|
committer | Boris Brezillon <boris.brezillon@free-electrons.com> | 2016-09-23 09:35:16 +0200 |
commit | 57d419a42c501713fd023bc21f8798c14ad4e005 (patch) | |
tree | 497f26aabf64dbeaab4c88839cc523a1cca8719b /drivers | |
parent | 74a332e78e8f0e2b8bef7ebb6b3470bb0df1a0bf (diff) | |
download | linux-stable-57d419a42c501713fd023bc21f8798c14ad4e005.tar.gz linux-stable-57d419a42c501713fd023bc21f8798c14ad4e005.tar.bz2 linux-stable-57d419a42c501713fd023bc21f8798c14ad4e005.zip |
mtd: nand: timings: Reorder tRR_min def in mode 0
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>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/mtd/nand/nand_timings.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/nand/nand_timings.c b/drivers/mtd/nand/nand_timings.c index c0941d5eb701..30119c588e0f 100644 --- a/drivers/mtd/nand/nand_timings.c +++ b/drivers/mtd/nand/nand_timings.c @@ -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, |