diff options
author | Wolfgang Denk <wd@pollux.denx.de> | 2006-05-03 01:24:04 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@pollux.denx.de> | 2006-05-03 01:24:04 +0200 |
commit | 610cf3676ee7376e0a55419626a30414a7b20db2 (patch) | |
tree | 31d7b61fbfd7421441d44d0c47c580c722c69465 /board/nc650/nc650.c | |
parent | da4849fb30db9ec2cb1ae0bafa7455b9c4cb87b3 (diff) | |
download | u-boot-imx-610cf3676ee7376e0a55419626a30414a7b20db2.zip u-boot-imx-610cf3676ee7376e0a55419626a30414a7b20db2.tar.gz u-boot-imx-610cf3676ee7376e0a55419626a30414a7b20db2.tar.bz2 |
Coding Style cleanup
Diffstat (limited to 'board/nc650/nc650.c')
-rw-r--r-- | board/nc650/nc650.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/board/nc650/nc650.c b/board/nc650/nc650.c index c90ac9c..8a6b5b0 100644 --- a/board/nc650/nc650.c +++ b/board/nc650/nc650.c @@ -265,8 +265,8 @@ int misc_init_r(void) int iCompatMode = 0; char *pParam = NULL; char *envlb; - - /* + + /* First byte in CPLD read address space signals compatibility mode 0 - cp850 1 - kp852 @@ -274,9 +274,9 @@ int misc_init_r(void) pParam = (char*)(CFG_CPLD_BASE); if( *pParam != 0) iCompatMode = 1; - + if ( iCompatMode != 0) { - /* + /* In KP852 compatibility mode we have to write to DPRAM as early as possible the binary coded line config and board name. @@ -288,7 +288,7 @@ int misc_init_r(void) setenv( DPRAM_VARNAME, DEFAULT_LB); envlb = DEFAULT_LB; } - + /* Status string */ printf("Mode: KP852(LB=%s)\n", envlb); @@ -305,7 +305,7 @@ int misc_init_r(void) } else { puts("Mode: CP850\n"); } - + return 0; } #endif |