diff options
author | Stefano Babic <sbabic@denx.de> | 2010-03-05 17:54:37 +0100 |
---|---|---|
committer | Tom Rix <Tom.Rix@windriver.com> | 2010-03-07 12:36:36 -0600 |
commit | e4d34492017c95e4041ea0c581e1ab8d1d49381b (patch) | |
tree | 3badc8c1ab6433507c7c9d6993ad7aaacb47bf4f /board | |
parent | 9d69e33d8d0f112fe3a089101d023e87431684d1 (diff) | |
download | u-boot-imx-e4d34492017c95e4041ea0c581e1ab8d1d49381b.zip u-boot-imx-e4d34492017c95e4041ea0c581e1ab8d1d49381b.tar.gz u-boot-imx-e4d34492017c95e4041ea0c581e1ab8d1d49381b.tar.bz2 |
MX51: removed warnings for the mx51evk
The patch removes warnings at compile time and provides
some cleanup code:
- Removed comment on NAND (not yet supported) from lowlevel_init.S
- Removed NFMS bit definition from imx-regs.h
The bit is only related to MX.25/35 and can lead to confusion
- Moved is_soc_rev() to soc specific code (removed from mx51evk.c)
Signed-off-by: Stefano Babic <sbabic@denx.de>
Diffstat (limited to 'board')
-rw-r--r-- | board/freescale/mx51evk/mx51evk.c | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/board/freescale/mx51evk/mx51evk.c b/board/freescale/mx51evk/mx51evk.c index df0e8ed..af1b0bd 100644 --- a/board/freescale/mx51evk/mx51evk.c +++ b/board/freescale/mx51evk/mx51evk.c @@ -26,6 +26,7 @@ #include <asm/arch/mx51_pins.h> #include <asm/arch/iomux.h> #include <asm/errno.h> +#include <asm/arch/sys_proto.h> #include <i2c.h> #include <mmc.h> #include <fsl_esdhc.h> @@ -48,16 +49,6 @@ u32 get_board_rev(void) return system_rev; } -static inline void set_board_rev(int rev) -{ - system_rev |= (rev & 0xF) << 8; -} - -inline int is_soc_rev(int rev) -{ - return (system_rev & 0xFF) - rev; -} - int dram_init(void) { gd->bd->bi_dram[0].start = PHYS_SDRAM_1; |