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 /include/asm-arm/arch-at91/at91sam9260.h | |
parent | 5c97a1de196fdcbe9d098948ecf4fccfbea23b78 (diff) | |
download | u-boot-imx-7c966a8bdfdab80cafbfed035d7ae6ea6f58f756.zip u-boot-imx-7c966a8bdfdab80cafbfed035d7ae6ea6f58f756.tar.gz u-boot-imx-7c966a8bdfdab80cafbfed035d7ae6ea6f58f756.tar.bz2 |
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 'include/asm-arm/arch-at91/at91sam9260.h')
-rw-r--r-- | include/asm-arm/arch-at91/at91sam9260.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/asm-arm/arch-at91/at91sam9260.h b/include/asm-arm/arch-at91/at91sam9260.h index 7ca6078..a60a081 100644 --- a/include/asm-arm/arch-at91/at91sam9260.h +++ b/include/asm-arm/arch-at91/at91sam9260.h @@ -139,9 +139,9 @@ * Cpu Name */ #if defined(CONFIG_AT91SAM9260) -#define AT91_CPU_NAME "AT91SAM9260" +#define CONFIG_SYS_AT91_CPU_NAME "AT91SAM9260" #elif defined(CONFIG_AT91SAM9G20) -#define AT91_CPU_NAME "AT91SAM9G20" +#define CONFIG_SYS_AT91_CPU_NAME "AT91SAM9G20" #endif #endif |