diff options
author | Heinrich Schuchardt | 2018-03-18 12:10:55 +0100 |
---|---|---|
committer | Philipp Tomsich | 2018-03-28 23:30:31 +0200 |
commit | 2ebc80e83c51d56d17708eec40aedbdf2904460c (patch) | |
tree | 079622cb9762d75058523e2082517753979f1587 /drivers/ram/rockchip/sdram_rk3399.c | |
parent | 7a6d7d3e12790091a918d14007a297eedab30d03 (diff) |
driver: ram: rockchip: rk3399: missing counter increment
If we want to check the duration we need to increment the counter.
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Acked-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
Reviewed-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
Diffstat (limited to 'drivers/ram/rockchip/sdram_rk3399.c')
-rw-r--r-- | drivers/ram/rockchip/sdram_rk3399.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/ram/rockchip/sdram_rk3399.c b/drivers/ram/rockchip/sdram_rk3399.c index 76c1fe80a7f..5cb470c209f 100644 --- a/drivers/ram/rockchip/sdram_rk3399.c +++ b/drivers/ram/rockchip/sdram_rk3399.c @@ -1015,6 +1015,7 @@ static int switch_to_phy_index1(struct dram_info *dram, writel(RK_CLRSETBITS(1 << 1, 1 << 1), &dram->cic->cic_ctrl0); while (!(readl(&dram->cic->cic_status0) & (1 << 0))) { mdelay(10); + i++; if (i > 10) { debug("index1 frequency done overtime\n"); return -ETIME; |