From: York Sun Date: Fri, 26 May 2017 00:03:23 +0000 (-0700) Subject: driver: ddr: fsl: Fix compiling error for DDR2 X-Git-Tag: v2017.07-rc2~18^2~11 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=7c8e0e052853a181e379735f25cfe85dfb575e1c;p=u-boot driver: ddr: fsl: Fix compiling error for DDR2 Fix compiling error of "no member named 'taamin_ps'" for DDR2. Signed-off-by: York Sun --- diff --git a/drivers/ddr/fsl/interactive.c b/drivers/ddr/fsl/interactive.c index 202ad138f9..653bbabc95 100644 --- a/drivers/ddr/fsl/interactive.c +++ b/drivers/ddr/fsl/interactive.c @@ -154,7 +154,9 @@ static void lowest_common_dimm_parameters_edit(fsl_ddr_info_t *pinfo, static const struct options_string options[] = { COMMON_TIMING(tckmin_x_ps), COMMON_TIMING(tckmax_ps), +#if defined(CONFIG_SYS_FSL_DDR3) || defined(CONFIG_SYS_FSL_DDR4) COMMON_TIMING(taamin_ps), +#endif COMMON_TIMING(trcd_ps), COMMON_TIMING(trp_ps), COMMON_TIMING(tras_ps), @@ -422,7 +424,9 @@ static void print_lowest_common_dimm_parameters( const common_timing_params_t *plcd_dimm_params) { static const struct options_string options[] = { +#if defined(CONFIG_SYS_FSL_DDR3) || defined(CONFIG_SYS_FSL_DDR4) COMMON_TIMING(taamin_ps), +#endif COMMON_TIMING(trcd_ps), COMMON_TIMING(trp_ps), COMMON_TIMING(tras_ps),