diff options
| author | Kumar Gala <galak@kernel.crashing.org> | 2011-01-25 01:48:03 -0600 | 
|---|---|---|
| committer | Kumar Gala <galak@kernel.crashing.org> | 2011-04-04 09:24:40 -0500 | 
| commit | f0f899432e8e901844c3d98483d89d4612f13d98 (patch) | |
| tree | 5ba53e540f5edf0b65b746782ac4f3c6fc171c06 | |
| parent | 5cfbc458d4957a186d1433cf1c14e8f4e6d4431f (diff) | |
| download | olio-uboot-2014.01-f0f899432e8e901844c3d98483d89d4612f13d98.tar.xz olio-uboot-2014.01-f0f899432e8e901844c3d98483d89d4612f13d98.zip | |
powerpc/85xx: Declare fsl_ddr_set_memctl_regs in <asm/fsl_ddr_sdram.h>
Remove declerations of fsl_ddr_set_memctl_regs in board files with and
place it into a common header.
Based on patch from Poonam Aggrwal.
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
| -rw-r--r-- | arch/powerpc/include/asm/fsl_ddr_sdram.h | 2 | ||||
| -rw-r--r-- | board/freescale/corenet_ds/ddr.c | 3 | ||||
| -rw-r--r-- | board/freescale/p1_p2_rdb/ddr.c | 3 | 
3 files changed, 2 insertions, 6 deletions
| diff --git a/arch/powerpc/include/asm/fsl_ddr_sdram.h b/arch/powerpc/include/asm/fsl_ddr_sdram.h index 02a1f5d32..b5b1efe66 100644 --- a/arch/powerpc/include/asm/fsl_ddr_sdram.h +++ b/arch/powerpc/include/asm/fsl_ddr_sdram.h @@ -271,6 +271,8 @@ typedef struct memctl_options_s {  extern phys_size_t fsl_ddr_sdram(void);  extern int fsl_use_spd(void); +extern void fsl_ddr_set_memctl_regs(const fsl_ddr_cfg_regs_t *regs, +					unsigned int ctrl_num);  /*   * The 85xx boards have a common prototype for fixed_sdram so put the diff --git a/board/freescale/corenet_ds/ddr.c b/board/freescale/corenet_ds/ddr.c index 844eb1df8..ee08abb29 100644 --- a/board/freescale/corenet_ds/ddr.c +++ b/board/freescale/corenet_ds/ddr.c @@ -16,9 +16,6 @@  DECLARE_GLOBAL_DATA_PTR; -extern void fsl_ddr_set_memctl_regs(const fsl_ddr_cfg_regs_t *regs, -				   unsigned int ctrl_num); -  /*   * Fixed sdram init -- doesn't use serial presence detect. diff --git a/board/freescale/p1_p2_rdb/ddr.c b/board/freescale/p1_p2_rdb/ddr.c index fbc46b1f4..44faec3a0 100644 --- a/board/freescale/p1_p2_rdb/ddr.c +++ b/board/freescale/p1_p2_rdb/ddr.c @@ -30,9 +30,6 @@  DECLARE_GLOBAL_DATA_PTR; -extern void fsl_ddr_set_memctl_regs(const fsl_ddr_cfg_regs_t *regs, -				   unsigned int ctrl_num); -  #define CONFIG_SYS_DDR_CS0_BNDS		0x0000003F  #define CONFIG_SYS_DDR_CS0_CONFIG	0x80014202  #define CONFIG_SYS_DDR_CS0_CONFIG_2	0x00000000 |