diff options
author | Stelian Pop <stelian@popies.net> | 2008-11-07 13:55:14 +0100 |
---|---|---|
committer | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 2008-11-21 01:41:14 +0100 |
commit | ad229a44e162af0f65e57e4e3dc133d5f0364ecb (patch) | |
tree | 528e9c8ac10c98f939a4ac8bf281ade7b6eedd30 /board/atmel/at91sam9263ek/at91sam9263ek.c | |
parent | 9b827cf1720acda2473afa516956eab6f7cca9a1 (diff) | |
download | u-boot-imx-ad229a44e162af0f65e57e4e3dc133d5f0364ecb.zip u-boot-imx-ad229a44e162af0f65e57e4e3dc133d5f0364ecb.tar.gz u-boot-imx-ad229a44e162af0f65e57e4e3dc133d5f0364ecb.tar.bz2 |
AT91: Use AT91_CPU_CLOCK in displays
Introduce AT91_CPU_CLOCK and use it for displaying the CPU
speed in the LCD driver.
Also make AT91_MAIN_CLOCK and AT91_MASTER_CLOCK reflect the
corresponding board clocks.
Signed-off-by: Stelian Pop <stelian@popies.net>
Diffstat (limited to 'board/atmel/at91sam9263ek/at91sam9263ek.c')
-rw-r--r-- | board/atmel/at91sam9263ek/at91sam9263ek.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/atmel/at91sam9263ek/at91sam9263ek.c b/board/atmel/at91sam9263ek/at91sam9263ek.c index 4feed9a..ebd4649 100644 --- a/board/atmel/at91sam9263ek/at91sam9263ek.c +++ b/board/atmel/at91sam9263ek/at91sam9263ek.c @@ -276,7 +276,7 @@ void lcd_show_board_info(void) lcd_printf ("at91support@atmel.com\n"); lcd_printf ("%s CPU at %s MHz\n", AT91_CPU_NAME, - strmhz(temp, AT91_MAIN_CLOCK)); + strmhz(temp, AT91_CPU_CLOCK)); dram_size = 0; for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) |