diff options
author | Wolfgang Denk <wd@denx.de> | 2011-05-19 22:21:41 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2011-05-19 22:22:44 +0200 |
commit | cd6881b519c94b15907d4f28149e5ed3fd0beea5 (patch) | |
tree | 8a5dc395495cbaa422b1b6dc8193e2e9963d576b /arch | |
parent | 4d69e98c068ed0d3533a61b64fe06d0d1b870aaf (diff) | |
download | u-boot-imx-cd6881b519c94b15907d4f28149e5ed3fd0beea5.zip u-boot-imx-cd6881b519c94b15907d4f28149e5ed3fd0beea5.tar.gz u-boot-imx-cd6881b519c94b15907d4f28149e5ed3fd0beea5.tar.bz2 |
Minor coding style cleanup.
Signed-off-by: Wolfgang Denk <wd@denx.de>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/cpu/armv7/start.S | 2 | ||||
-rw-r--r-- | arch/arm/lib/memcpy.S | 1 | ||||
-rw-r--r-- | arch/powerpc/cpu/mpc85xx/speed.c | 2 | ||||
-rw-r--r-- | arch/x86/cpu/sc520/sc520.c | 1 |
4 files changed, 2 insertions, 4 deletions
diff --git a/arch/arm/cpu/armv7/start.S b/arch/arm/cpu/armv7/start.S index 2929fc7..d91ae12 100644 --- a/arch/arm/cpu/armv7/start.S +++ b/arch/arm/cpu/armv7/start.S @@ -79,7 +79,7 @@ _TEXT_BASE: */ .globl _armboot_start _armboot_start: - .word _start + .word _start #endif /* diff --git a/arch/arm/lib/memcpy.S b/arch/arm/lib/memcpy.S index 40db90e..3b5aeec 100644 --- a/arch/arm/lib/memcpy.S +++ b/arch/arm/lib/memcpy.S @@ -238,4 +238,3 @@ memcpy: 17: forward_copy_shift pull=16 push=16 18: forward_copy_shift pull=24 push=8 - diff --git a/arch/powerpc/cpu/mpc85xx/speed.c b/arch/powerpc/cpu/mpc85xx/speed.c index c4c156d..a83dfeb 100644 --- a/arch/powerpc/cpu/mpc85xx/speed.c +++ b/arch/powerpc/cpu/mpc85xx/speed.c @@ -112,7 +112,7 @@ void get_sys_info (sys_info_t * sysInfo) #if (CONFIG_SYS_FSL_NUM_CC_PLLS == 2) #define HWA_CC_PLL 1 #elif (CONFIG_SYS_FSL_NUM_CC_PLLS == 4) -#define HWA_CC_PLL 2 +#define HWA_CC_PLL 2 #else #error CONFIG_SYS_FSL_NUM_CC_PLLS not set or unknown case #endif diff --git a/arch/x86/cpu/sc520/sc520.c b/arch/x86/cpu/sc520/sc520.c index 8c410a2..726a325 100644 --- a/arch/x86/cpu/sc520/sc520.c +++ b/arch/x86/cpu/sc520/sc520.c @@ -64,4 +64,3 @@ int cpu_init_r(void) return x86_cpu_init_r(); } - |