2
0
mirror of https://github.com/edk2-porting/linux-next.git synced 2025-01-16 17:43:56 +08:00

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>
This commit is contained in:
Boris Brezillon 2016-06-14 16:21:07 +02:00
parent 74a332e78e
commit 57d419a42c

View File

@ -42,9 +42,9 @@ static const struct nand_sdr_timings onfi_sdr_timings[] = {
.tRHZ_max = 200000, .tRHZ_max = 200000,
.tRLOH_min = 0, .tRLOH_min = 0,
.tRP_min = 50000, .tRP_min = 50000,
.tRR_min = 40000,
.tRST_max = 250000000000ULL, .tRST_max = 250000000000ULL,
.tWB_max = 200000, .tWB_max = 200000,
.tRR_min = 40000,
.tWC_min = 100000, .tWC_min = 100000,
.tWH_min = 30000, .tWH_min = 30000,
.tWHR_min = 120000, .tWHR_min = 120000,