diff options
author | Fabio Estevam <fabio.estevam@freescale.com> | 2012-08-28 09:29:06 +0000 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2012-09-04 11:57:56 +0200 |
commit | ddfcc810d3947a085fb85cefcb6cb04c723eadf9 (patch) | |
tree | c42062298764fc3017bde2032caca0212cf7079a | |
parent | de6dc4ea3973b1308cf013a60d6a594232c10e88 (diff) | |
download | u-boot-imx-ddfcc810d3947a085fb85cefcb6cb04c723eadf9.zip u-boot-imx-ddfcc810d3947a085fb85cefcb6cb04c723eadf9.tar.gz u-boot-imx-ddfcc810d3947a085fb85cefcb6cb04c723eadf9.tar.bz2 |
mx28evk: Convert to mxs_adjust_memory_params()
Recent conversion from mx28_adjust_memory_params to mxs_adjust_memory_params
missed to update mx28evk, which caused the board not to boot.
Apply the conversion so that the board can boot again.
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
Acked-by: Marek Vasut <marex@denx.de>
-rw-r--r-- | board/freescale/mx28evk/iomux.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/freescale/mx28evk/iomux.c b/board/freescale/mx28evk/iomux.c index 16a6d8a..ae6eda3 100644 --- a/board/freescale/mx28evk/iomux.c +++ b/board/freescale/mx28evk/iomux.c @@ -173,7 +173,7 @@ const iomux_cfg_t iomux_setup[] = { #define HW_DRAM_CTL29_CONFIG (CS_MAP << 24 | COLUMN_SIZE << 16 | \ ADDR_PINS << 8 | APREBIT) -void mx28_adjust_memory_params(uint32_t *dram_vals) +void mxs_adjust_memory_params(uint32_t *dram_vals) { dram_vals[HW_DRAM_CTL29] = HW_DRAM_CTL29_CONFIG; } |