From: Boris Brezillon Date: Tue, 14 Jun 2016 14:21:07 +0000 (+0200) Subject: mtd: nand: timings: Reorder tRR_min def in mode 0 X-Git-Tag: v5.15~12684^2~2^2~22 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=57d419a42c501713fd023bc21f8798c14ad4e005;p=platform%2Fkernel%2Flinux-starfive.git 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 --- diff --git a/drivers/mtd/nand/nand_timings.c b/drivers/mtd/nand/nand_timings.c index c0941d5..30119c5 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,