summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Agner <stefan.agner@toradex.com>2015-08-11 09:57:03 +0200
committerStefan Agner <stefan.agner@toradex.com>2015-08-11 09:57:03 +0200
commit9e44a61afa422546196fcbf6b04ab84818653066 (patch)
treed77ec49764761b4fe9dae7349e61ee6541214087
parente949d566bee99b893e07a3c59586c9c828960cf0 (diff)
colibri_vf: fix DDR property fixup
Set DDR property fixup also in (future) version 2.x revisions.
-rw-r--r--board/toradex/colibri_vf/colibri_vf.c2
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 cbbba0fa55..89b89dae37 100644
--- a/board/toradex/colibri_vf/colibri_vf.c
+++ b/board/toradex/colibri_vf/colibri_vf.c
@@ -509,7 +509,7 @@ int ft_board_setup(void *blob, bd_t *bd)
* Colibri VFxx modules V1.2 and later have pull-up/down which allows
* to put the DDR3 memory into self-refresh mode.
*/
- if (trdx_hw_tag.ver_major >= 1 && trdx_hw_tag.ver_minor >= 2)
+ if (trdx_hw_tag.ver_major > 1 || trdx_hw_tag.ver_minor >= 2)
do_fixup_by_compat(blob, "fsl,vf610-ddrmc",
"fsl,has-cke-reset-pulls", NULL, 0, 1);
#endif