[U-Boot] [PATCH] Kirkwood: Makefile cleanup- fixed ordering (cosmetic change)

As per coding guidlines, it is good to maintain proper ordering in the makefiles. This was missed during initial coding, corrected here.
This was discovered during orion5x code review Thanks to Albert Aribaud for this.
Signed-off-by: Prafulla Wadaskar prafulla@marvell.com --- cpu/arm926ejs/kirkwood/Makefile | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/cpu/arm926ejs/kirkwood/Makefile b/cpu/arm926ejs/kirkwood/Makefile index d73e210..fc2cc03 100644 --- a/cpu/arm926ejs/kirkwood/Makefile +++ b/cpu/arm926ejs/kirkwood/Makefile @@ -26,8 +26,8 @@ include $(TOPDIR)/config.mk
LIB = $(obj)lib$(SOC).a
-COBJS-y = dram.o -COBJS-y += cpu.o +COBJS-y = cpu.o +COBJS-y += dram.o COBJS-y += mpp.o COBJS-y += timer.o

-----Original Message----- From: Prafulla Wadaskar [mailto:prafulla@marvell.com] Sent: Thursday, December 24, 2009 3:04 AM To: u-boot@lists.denx.de Cc: Prabhanjan Sarnaik; Ashish Karkare; Prafulla Wadaskar Subject: [PATCH] Kirkwood: Makefile cleanup- fixed ordering (cosmetic change)
As per coding guidlines, it is good to maintain proper ordering in the makefiles. This was missed during initial coding, corrected here.
This was discovered during orion5x code review Thanks to Albert Aribaud for this.
Signed-off-by: Prafulla Wadaskar prafulla@marvell.com
cpu/arm926ejs/kirkwood/Makefile | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
Applied to u-boot-marvell.git/master
Regards.. Prafulla . .
participants (1)
-
Prafulla Wadaskar