diff options
author | Achim Ehrlich <aehrlich@taskit.de> | 2010-02-24 10:29:16 +0100 |
---|---|---|
committer | Tom Rix <Tom.Rix@windriver.com> | 2010-03-07 12:36:35 -0600 |
commit | 7c966a8bdfdab80cafbfed035d7ae6ea6f58f756 (patch) | |
tree | 545dbb64661d1cdedbf718d813d330aa45bcdcf9 /board/ronetix | |
parent | 5c97a1de196fdcbe9d098948ecf4fccfbea23b78 (diff) |
ARM change name of defines for AT91 arm926ejs
Configuration defines should be preceeded with CONFIG_SYS_. Renamed
some at91 specific defines to conform to this naming convention:
AT91_CPU_NAME to CONFIG_SYS_AT91_CPU_NAME
AT91_MAIN_CLOCK to CONFIG_SYS_AT91_MAIN_CLOCK
Signed-off-by: Achim Ehrlich <aehrlich@taskit.de>
Diffstat (limited to 'board/ronetix')
-rw-r--r-- | board/ronetix/pm9261/pm9261.c | 2 | ||||
-rw-r--r-- | board/ronetix/pm9263/pm9263.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/board/ronetix/pm9261/pm9261.c b/board/ronetix/pm9261/pm9261.c index 6915b9b2b3d..8662339581f 100644 --- a/board/ronetix/pm9261/pm9261.c +++ b/board/ronetix/pm9261/pm9261.c @@ -189,7 +189,7 @@ void lcd_show_board_info(void) lcd_printf ("(C) 2009 Ronetix GmbH\n"); lcd_printf ("support@ronetix.at\n"); lcd_printf ("%s CPU at %s MHz", - AT91_CPU_NAME, + CONFIG_SYS_AT91_CPU_NAME, strmhz(temp, get_cpu_clk_rate())); dram_size = 0; diff --git a/board/ronetix/pm9263/pm9263.c b/board/ronetix/pm9263/pm9263.c index 29555f8db32..23ea154b435 100644 --- a/board/ronetix/pm9263/pm9263.c +++ b/board/ronetix/pm9263/pm9263.c @@ -304,7 +304,7 @@ void lcd_show_board_info(void) lcd_printf ("(C) 2009 Ronetix GmbH\n"); lcd_printf ("support@ronetix.at\n"); lcd_printf ("%s CPU at %s MHz", - AT91_CPU_NAME, + CONFIG_SYS_AT91_CPU_NAME, strmhz(temp, get_cpu_clk_rate())); dram_size = 0; |