[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <512DADCA.9040609@asianux.com>
Date: Wed, 27 Feb 2013 14:55:06 +0800
From: Chen Gang <gang.chen@...anux.com>
To: qca_vkondrat@....qualcomm.com,
"John W. Linville" <linville@...driver.com>,
linux-wireless@...r.kernel.org, wil6210@....qualcomm.com,
"netdev@...r.kernel.org >> netdev" <netdev@...r.kernel.org>
Subject: [PATCH] drivers/net/wireless/ath/wil6210: Makefile, only -Werror
when no -W* in EXTRA_CFLAGS
When make with EXTRA_CFLAGS=-W, it will report error.
so give a check in Makefile.
Signed-off-by: Chen Gang <gang.chen@...anux.com>
---
drivers/net/wireless/ath/wil6210/Makefile | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/drivers/net/wireless/ath/wil6210/Makefile b/drivers/net/wireless/ath/wil6210/Makefile
index 9396dc9..d288eea 100644
--- a/drivers/net/wireless/ath/wil6210/Makefile
+++ b/drivers/net/wireless/ath/wil6210/Makefile
@@ -9,5 +9,7 @@ wil6210-objs += wmi.o
wil6210-objs += interrupt.o
wil6210-objs += txrx.o
-subdir-ccflags-y += -Werror
+ifeq (, $(findstring -W,$(EXTRA_CFLAGS)))
+ subdir-ccflags-y += -Werror
+endif
subdir-ccflags-y += -D__CHECK_ENDIAN__
--
1.7.7.6
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists