diff options
author | Akshay Saraswat <akshay.s@samsung.com> | 2014-05-26 19:17:03 +0530 |
---|---|---|
committer | Minkyu Kang <mk7.kang@samsung.com> | 2014-06-13 17:05:13 +0900 |
commit | cfde7588d8ad22560e2328574a4f415642170b92 (patch) | |
tree | 3504329bb93b40be89ff1640fb05f86813700da3 /arch/arm/cpu/armv7/exynos/exynos5_setup.h | |
parent | 7922a2d479b6cdce853b853b80d94675b955a66a (diff) | |
download | u-boot-imx-cfde7588d8ad22560e2328574a4f415642170b92.zip u-boot-imx-cfde7588d8ad22560e2328574a4f415642170b92.tar.gz u-boot-imx-cfde7588d8ad22560e2328574a4f415642170b92.tar.bz2 |
Exynos5: DMC: Modify the definition of ddr3_mem_ctrl_init
Passing fewer arguments is better and mem_iv_size is never
used. Let's keep only one argument and make it cleaner.
Signed-off-by: Hatim Ali <hatim.rv@samsung.com>
Signed-off-by: Akshay Saraswat <akshay.s@samsung.com>
Acked-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
Diffstat (limited to 'arch/arm/cpu/armv7/exynos/exynos5_setup.h')
-rw-r--r-- | arch/arm/cpu/armv7/exynos/exynos5_setup.h | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/arch/arm/cpu/armv7/exynos/exynos5_setup.h b/arch/arm/cpu/armv7/exynos/exynos5_setup.h index 53b0ace..314d6f4 100644 --- a/arch/arm/cpu/armv7/exynos/exynos5_setup.h +++ b/arch/arm/cpu/armv7/exynos/exynos5_setup.h @@ -890,16 +890,11 @@ enum { /* * Memory variant specific initialization code for DDR3 * - * @param mem Memory timings for this memory type. - * @param mem_iv_size Memory interleaving size is a configurable parameter - * which the DMC uses to decide how to split a memory - * chunk into smaller chunks to support concurrent - * accesses; may vary across boards. + * @param mem Memory timings for this memory type. * @param reset Reset DDR PHY during initialization. * @return 0 if ok, SETUP_ERR_... if there is a problem */ -int ddr3_mem_ctrl_init(struct mem_timings *mem, unsigned long mem_iv_size, - int reset); +int ddr3_mem_ctrl_init(struct mem_timings *mem, int reset); /* Memory variant specific initialization code for LPDDR3 */ void lpddr3_mem_ctrl_init(void); |