From 39a78d995122d66f846a70f8a49441a28d1c5112 Mon Sep 17 00:00:00 2001 From: Sascha Hauer Date: Tue, 3 Jun 2008 12:51:05 +0200 Subject: [PATCH] [kbuild] remove -Wall from architecture Makefiles. It's already in toplevel CFLAGS --- arch/arm/Makefile | 2 +- arch/blackfin/Makefile | 2 +- arch/m68k/Makefile | 2 +- arch/ppc/Makefile | 2 +- arch/sandbox/Makefile | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/arch/arm/Makefile b/arch/arm/Makefile index 1459bbf17..6300d637e 100644 --- a/arch/arm/Makefile +++ b/arch/arm/Makefile @@ -1,5 +1,5 @@ -CPPFLAGS += -Wall -pipe -D __ARM__ -fno-strict-aliasing +CPPFLAGS += -pipe -D __ARM__ -fno-strict-aliasing machine-$(CONFIG_ARCH_IMX) := imx diff --git a/arch/blackfin/Makefile b/arch/blackfin/Makefile index 39ed013a7..fb8be7998 100644 --- a/arch/blackfin/Makefile +++ b/arch/blackfin/Makefile @@ -1,5 +1,5 @@ -CPPFLAGS += -Wall -pipe -fno-strict-aliasing +CPPFLAGS += -pipe -fno-strict-aliasing board-$(CONFIG_MACH_IPE337) := ipe337 diff --git a/arch/m68k/Makefile b/arch/m68k/Makefile index 9c36535c5..e38f66beb 100644 --- a/arch/m68k/Makefile +++ b/arch/m68k/Makefile @@ -18,7 +18,7 @@ # along with U-Boot V2. If not, see . # -CPPFLAGS += -Wall -isystem $(gccincdir) -pipe -D __M68K__ \ +CPPFLAGS += -isystem $(gccincdir) -pipe -D __M68K__ \ -fno-strict-aliasing diff --git a/arch/ppc/Makefile b/arch/ppc/Makefile index 057f8be2e..12bcdda17 100644 --- a/arch/ppc/Makefile +++ b/arch/ppc/Makefile @@ -1,5 +1,5 @@ -CPPFLAGS += -Wall -ffixed-r14 \ +CPPFLAGS += -ffixed-r14 \ -pipe -meabi -Wstrict-prototypes -D __PPC__ -D CONFIG_PPC \ -fno-strict-aliasing diff --git a/arch/sandbox/Makefile b/arch/sandbox/Makefile index 3ac9b1d95..97f31ed71 100644 --- a/arch/sandbox/Makefile +++ b/arch/sandbox/Makefile @@ -1,5 +1,5 @@ -CPPFLAGS += -Wall -pipe -fno-strict-aliasing +CPPFLAGS += -pipe -fno-strict-aliasing machine-y := sandbox