diff options
author | wdenk <wdenk> | 2003-10-15 23:53:47 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2003-10-15 23:53:47 +0000 |
commit | 42d1f0394bef0624fc9664714d54bb137931d6a6 (patch) | |
tree | 892a4130507484d25faf9a72e019cf88cfb3e3d9 /board/sacsng | |
parent | 2d5b561e2bfdee8552a99b2cf93016cce2a74895 (diff) | |
download | u-boot-imx-42d1f0394bef0624fc9664714d54bb137931d6a6.zip u-boot-imx-42d1f0394bef0624fc9664714d54bb137931d6a6.tar.gz u-boot-imx-42d1f0394bef0624fc9664714d54bb137931d6a6.tar.bz2 |
* Patches by Xianghua Xiao, 15 Oct 2003:
- Added Motorola CPU 8540/8560 support (cpu/85xx)
- Added Motorola MPC8540ADS board support (board/mpc8540ads)
- Added Motorola MPC8560ADS board support (board/mpc8560ads)
* Minor code cleanup
Diffstat (limited to 'board/sacsng')
-rw-r--r-- | board/sacsng/sacsng.c | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/board/sacsng/sacsng.c b/board/sacsng/sacsng.c index 60563d4..e50b747 100644 --- a/board/sacsng/sacsng.c +++ b/board/sacsng/sacsng.c @@ -533,11 +533,11 @@ int misc_init_r(void) setenv("Daq128xSampling", "1"); } - /* - * Display the ADC/DAC clocking information + /* + * Display the ADC/DAC clocking information */ if (!quiet) { - Daq_Display_Clocks(); + Daq_Display_Clocks(); } /* @@ -572,9 +572,9 @@ int misc_init_r(void) * 3) Write the I2C address to register 6 * 4) Enable address matching by setting the MSB in register 7 */ - + if (!quiet) { - printf("Initializing the ADC...\n"); + printf("Initializing the ADC...\n"); } udelay(ADC_INITIAL_DELAY); /* 10uSec per uF of VREF cap */ @@ -720,7 +720,7 @@ int misc_init_r(void) I2C_TRISTATE; if (!quiet) { - printf("\n"); + printf("\n"); } #ifdef CONFIG_ETHER_LOOPBACK_TEST @@ -795,14 +795,14 @@ void show_boot_progress (int status) if(status > 0) { last_boot_progress = status; } else { - /* + /* * If a specific failure code is given, flash this code * else just use the last success code we've seen */ if(status < -1) last_boot_progress = -status; - - /* + + /* * Flash this code 5 times */ for(j=0; j<5; j++) { @@ -813,15 +813,15 @@ void show_boot_progress (int status) status_led_set(STATUS_LED_RED, STATUS_LED_ON); flash_code(last_boot_progress, 5, 3); - /* - * Delay 5 seconds between repetitions, - * with the fault LED blinking + /* + * Delay 5 seconds between repetitions, + * with the fault LED blinking */ for(i=0; i<5; i++) { - status_led_set(STATUS_LED_RED, STATUS_LED_OFF); - udelay(500000); - status_led_set(STATUS_LED_RED, STATUS_LED_ON); - udelay(500000); + status_led_set(STATUS_LED_RED, STATUS_LED_OFF); + udelay(500000); + status_led_set(STATUS_LED_RED, STATUS_LED_ON); + udelay(500000); } } |