Linux MIPS Architecture development
 help / color / mirror / Atom feed
* [PATCH -queue] MIPS: Move Loongson Makefile parts to their own Platform file (cont.)
@ 2010-06-02  8:53 Wu Zhangjin
  2010-06-03 10:59 ` Ralf Baechle
  2010-06-03 11:10 ` Dmitri Vorobiev
  0 siblings, 2 replies; 8+ messages in thread
From: Wu Zhangjin @ 2010-06-02  8:53 UTC (permalink / raw)
  To: Ralf Baechle, linux-mips; +Cc: Sam Ravnborg, Wu Zhangjin

Hi, Ralf

I have fogotten to remove the -Werror in the Makefiles under loongson/
directory, this patch does it. could you please merge it into the commit "MIPS:
Move Loongson Makefile parts to their own Platform file".

Thanks & Regards,

Signed-off-by: Wu Zhangjin <wuzhangjin@gmail.com>
---
 arch/mips/loongson/common/cs5536/Makefile |    2 --
 arch/mips/loongson/fuloong-2e/Makefile    |    2 --
 2 files changed, 0 insertions(+), 4 deletions(-)

diff --git a/arch/mips/loongson/common/cs5536/Makefile b/arch/mips/loongson/common/cs5536/Makefile
index 510d4cd..f12e640 100644
--- a/arch/mips/loongson/common/cs5536/Makefile
+++ b/arch/mips/loongson/common/cs5536/Makefile
@@ -9,5 +9,3 @@ obj-$(CONFIG_CS5536) += cs5536_pci.o cs5536_ide.o cs5536_acc.o cs5536_ohci.o \
 # Enable cs5536 mfgpt Timer
 #
 obj-$(CONFIG_CS5536_MFGPT) += cs5536_mfgpt.o
-
-EXTRA_CFLAGS += -Werror
diff --git a/arch/mips/loongson/fuloong-2e/Makefile b/arch/mips/loongson/fuloong-2e/Makefile
index 3aba5fc..b762272 100644
--- a/arch/mips/loongson/fuloong-2e/Makefile
+++ b/arch/mips/loongson/fuloong-2e/Makefile
@@ -3,5 +3,3 @@
 #
 
 obj-y += irq.o reset.o
-
-EXTRA_CFLAGS += -Werror
-- 
1.6.5

^ permalink raw reply related	[flat|nested] 8+ messages in thread

* Re: [PATCH -queue] MIPS: Move Loongson Makefile parts to their own Platform file (cont.)
  2010-06-02  8:53 [PATCH -queue] MIPS: Move Loongson Makefile parts to their own Platform file (cont.) Wu Zhangjin
@ 2010-06-03 10:59 ` Ralf Baechle
  2010-06-03 11:10 ` Dmitri Vorobiev
  1 sibling, 0 replies; 8+ messages in thread
From: Ralf Baechle @ 2010-06-03 10:59 UTC (permalink / raw)
  To: Wu Zhangjin; +Cc: linux-mips, Sam Ravnborg

On Wed, Jun 02, 2010 at 04:53:00PM +0800, Wu Zhangjin wrote:

Thanks, folded into the existing patch.

 Ralf

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH -queue] MIPS: Move Loongson Makefile parts to their own  Platform file (cont.)
  2010-06-02  8:53 [PATCH -queue] MIPS: Move Loongson Makefile parts to their own Platform file (cont.) Wu Zhangjin
  2010-06-03 10:59 ` Ralf Baechle
@ 2010-06-03 11:10 ` Dmitri Vorobiev
  2010-06-03 11:10   ` Dmitri Vorobiev
  2010-06-03 11:39   ` Ralf Baechle
  1 sibling, 2 replies; 8+ messages in thread
From: Dmitri Vorobiev @ 2010-06-03 11:10 UTC (permalink / raw)
  To: Wu Zhangjin; +Cc: Ralf Baechle, linux-mips

On Wed, Jun 2, 2010 at 11:53 AM, Wu Zhangjin <wuzhangjin@gmail.com> wrote:
> Hi, Ralf
>
> I have fogotten to remove the -Werror in the Makefiles under loongson/

I'm just curious: why would anyone want to remove -Werror? It's very
useful in most cases, IMO.

Dmitri

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH -queue] MIPS: Move Loongson Makefile parts to their own Platform file (cont.)
  2010-06-03 11:10 ` Dmitri Vorobiev
@ 2010-06-03 11:10   ` Dmitri Vorobiev
  2010-06-03 11:39   ` Ralf Baechle
  1 sibling, 0 replies; 8+ messages in thread
From: Dmitri Vorobiev @ 2010-06-03 11:10 UTC (permalink / raw)
  To: Wu Zhangjin; +Cc: Ralf Baechle, linux-mips

On Wed, Jun 2, 2010 at 11:53 AM, Wu Zhangjin <wuzhangjin@gmail.com> wrote:
> Hi, Ralf
>
> I have fogotten to remove the -Werror in the Makefiles under loongson/

I'm just curious: why would anyone want to remove -Werror? It's very
useful in most cases, IMO.

Dmitri

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH -queue] MIPS: Move Loongson Makefile parts to their own Platform file (cont.)
  2010-06-03 11:10 ` Dmitri Vorobiev
  2010-06-03 11:10   ` Dmitri Vorobiev
@ 2010-06-03 11:39   ` Ralf Baechle
  2010-06-03 12:04     ` Dmitri Vorobiev
  1 sibling, 1 reply; 8+ messages in thread
From: Ralf Baechle @ 2010-06-03 11:39 UTC (permalink / raw)
  To: Dmitri Vorobiev; +Cc: Wu Zhangjin, linux-mips

On Thu, Jun 03, 2010 at 02:10:26PM +0300, Dmitri Vorobiev wrote:

> > Hi, Ralf
> >
> > I have fogotten to remove the -Werror in the Makefiles under loongson/
> 
> I'm just curious: why would anyone want to remove -Werror? It's very
> useful in most cases, IMO.

arch/mips/Kbuild enables -Werror for all platforms.

  Ralf

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH -queue] MIPS: Move Loongson Makefile parts to their own  Platform file (cont.)
  2010-06-03 11:39   ` Ralf Baechle
@ 2010-06-03 12:04     ` Dmitri Vorobiev
  2010-06-03 12:04       ` Dmitri Vorobiev
  2010-06-03 12:07       ` Ralf Baechle
  0 siblings, 2 replies; 8+ messages in thread
From: Dmitri Vorobiev @ 2010-06-03 12:04 UTC (permalink / raw)
  To: Ralf Baechle; +Cc: Wu Zhangjin, linux-mips

On Thu, Jun 3, 2010 at 2:39 PM, Ralf Baechle <ralf@linux-mips.org> wrote:
> On Thu, Jun 03, 2010 at 02:10:26PM +0300, Dmitri Vorobiev wrote:
>
>> > Hi, Ralf
>> >
>> > I have fogotten to remove the -Werror in the Makefiles under loongson/
>>
>> I'm just curious: why would anyone want to remove -Werror? It's very
>> useful in most cases, IMO.
>
> arch/mips/Kbuild enables -Werror for all platforms.

Looks like I'm failing to keep pace with life :)

Dmitri

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH -queue] MIPS: Move Loongson Makefile parts to their own Platform file (cont.)
  2010-06-03 12:04     ` Dmitri Vorobiev
@ 2010-06-03 12:04       ` Dmitri Vorobiev
  2010-06-03 12:07       ` Ralf Baechle
  1 sibling, 0 replies; 8+ messages in thread
From: Dmitri Vorobiev @ 2010-06-03 12:04 UTC (permalink / raw)
  To: Ralf Baechle; +Cc: Wu Zhangjin, linux-mips

On Thu, Jun 3, 2010 at 2:39 PM, Ralf Baechle <ralf@linux-mips.org> wrote:
> On Thu, Jun 03, 2010 at 02:10:26PM +0300, Dmitri Vorobiev wrote:
>
>> > Hi, Ralf
>> >
>> > I have fogotten to remove the -Werror in the Makefiles under loongson/
>>
>> I'm just curious: why would anyone want to remove -Werror? It's very
>> useful in most cases, IMO.
>
> arch/mips/Kbuild enables -Werror for all platforms.

Looks like I'm failing to keep pace with life :)

Dmitri

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH -queue] MIPS: Move Loongson Makefile parts to their own Platform file (cont.)
  2010-06-03 12:04     ` Dmitri Vorobiev
  2010-06-03 12:04       ` Dmitri Vorobiev
@ 2010-06-03 12:07       ` Ralf Baechle
  1 sibling, 0 replies; 8+ messages in thread
From: Ralf Baechle @ 2010-06-03 12:07 UTC (permalink / raw)
  To: Dmitri Vorobiev; +Cc: Wu Zhangjin, linux-mips

On Thu, Jun 03, 2010 at 03:04:13PM +0300, Dmitri Vorobiev wrote:

> >> > I have fogotten to remove the -Werror in the Makefiles under loongson/
> >>
> >> I'm just curious: why would anyone want to remove -Werror? It's very
> >> useful in most cases, IMO.
> >
> > arch/mips/Kbuild enables -Werror for all platforms.
> 
> Looks like I'm failing to keep pace with life :)

Soon you'll need a fiber from vger to your brain just to keep up with lkml ;-)

  Ralf

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2010-06-03 12:07 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-06-02  8:53 [PATCH -queue] MIPS: Move Loongson Makefile parts to their own Platform file (cont.) Wu Zhangjin
2010-06-03 10:59 ` Ralf Baechle
2010-06-03 11:10 ` Dmitri Vorobiev
2010-06-03 11:10   ` Dmitri Vorobiev
2010-06-03 11:39   ` Ralf Baechle
2010-06-03 12:04     ` Dmitri Vorobiev
2010-06-03 12:04       ` Dmitri Vorobiev
2010-06-03 12:07       ` Ralf Baechle

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox