diff options
author | Fabio Estevam | 2015-10-13 23:54:32 -0300 |
---|---|---|
committer | Stefano Babic | 2015-10-15 11:16:17 +0200 |
commit | d45fd018c8ed233f55c9b4e219d06c71abf9e299 (patch) | |
tree | 99050288259b07d78245aec5785930a46205a77b /board/toradex/colibri_vf | |
parent | e24bb2b7322668746dad3ff24b1b4c045ceb3a6a (diff) |
colibri_vf: Fix bstlen field
Commit 3f353cecc ("vf610: refactor DDRMC code") changed the original
bstlen field from 3 to 0.
Restore the original value for proper behaviour.
Based on the patch from Anthony Felice <tony.felice@timesys.com>
for the vf610twr board.
Reported-by: Stefan Agner <stefan@agner.ch>
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
Diffstat (limited to 'board/toradex/colibri_vf')
-rw-r--r-- | board/toradex/colibri_vf/colibri_vf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/toradex/colibri_vf/colibri_vf.c b/board/toradex/colibri_vf/colibri_vf.c index 39bf0ac7d69..a6d1c5bcd1a 100644 --- a/board/toradex/colibri_vf/colibri_vf.c +++ b/board/toradex/colibri_vf/colibri_vf.c @@ -119,7 +119,7 @@ int dram_init(void) .trcd_int = 6, .tras_lockout = 0, .tdal = 12, - .bstlen = 0, + .bstlen = 3, .tdll = 512, .trp_ab = 6, .tref = 3120, |