diff options
author | Wolfgang Denk <wd@denx.de> | 2007-08-02 21:27:46 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2007-08-02 21:27:46 +0200 |
commit | b1b54e352028ed370c3aa95d6fdeb9d64c5d2f86 (patch) | |
tree | 9cebaabeb5eb120db8bbcfc424767f1d3eb7d8d9 /board/ads5121 | |
parent | 8993e54b6f397973794f3d6f47d3b3c0c98dd4f6 (diff) | |
download | u-boot-b1b54e352028ed370c3aa95d6fdeb9d64c5d2f86.tar.gz u-boot-b1b54e352028ed370c3aa95d6fdeb9d64c5d2f86.tar.xz u-boot-b1b54e352028ed370c3aa95d6fdeb9d64c5d2f86.zip |
Coding style cleanup, update CHANGELOG
Signed-off-by: Wolfgang Denk <wd@denx.de>
Diffstat (limited to 'board/ads5121')
-rw-r--r-- | board/ads5121/ads5121.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/board/ads5121/ads5121.c b/board/ads5121/ads5121.c index 0a99a34ac0..c8bfdb8692 100644 --- a/board/ads5121/ads5121.c +++ b/board/ads5121/ads5121.c @@ -114,7 +114,7 @@ long int fixed_sdram (void) * According to MPC5121e RM, configuring local access windows should * be followed by a dummy read of the config register that was * modified last and an isync - */ + */ i = im->sysconf.ddrlaw.ar; __asm__ __volatile__ ("isync"); @@ -183,6 +183,6 @@ int checkboard (void) uchar cpld_rev = *(vu_char *) (CFG_CPLD_BASE + 0x02); printf ("Board: ADS5121 rev. 0x%04x (CPLD rev. 0x%02x)\n", - brd_rev, cpld_rev); + brd_rev, cpld_rev); return 0; } |