All of lore.kernel.org
 help / color / mirror / Atom feed
From: matt mooney <mfm@muteddisk.com>
To: kernel-janitors@vger.kernel.org
Cc: Tom Tucker <tom@opengridcomputing.com>,
	Steve Wise <swise@opengridcomputing.com>,
	Roland Dreier <rolandd@cisco.com>,
	Sean Hefty <sean.hefty@intel.com>,
	Hal Rosenstock <hal.rosenstock@gmail.com>,
	Ralph Campbell <infinipath@qlogic.com>,
	linux-rdma@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: [PATCH 08/24] infiniband: change to new flag variable
Date: Fri, 24 Sep 2010 12:17:18 -0700	[thread overview]
Message-ID: <b484ccf548e1700e09ac7f731289503bf3e7b3bf.1285355033.git.mfm@muteddisk.com> (raw)
In-Reply-To: <40a2d76d013ad025d08a411992af10f6bbef0a13.1285355033.git.mfm@muteddisk.com>
In-Reply-To: <e0bdab5d2e8c52041c003de68ba774c3e706716c.1285355033.git.mfm@muteddisk.com>

Replace EXTRA_CFLAGS with ccflags-y.

Signed-off-by: matt mooney <mfm@muteddisk.com>
---
 drivers/infiniband/hw/amso1100/Kbuild |    4 +---
 drivers/infiniband/hw/cxgb3/Makefile  |    6 ++----
 drivers/infiniband/hw/cxgb4/Makefile  |    2 +-
 drivers/infiniband/hw/ipath/Makefile  |    2 +-
 4 files changed, 5 insertions(+), 9 deletions(-)

diff --git a/drivers/infiniband/hw/amso1100/Kbuild b/drivers/infiniband/hw/amso1100/Kbuild
index 06964c4..950dfab 100644
--- a/drivers/infiniband/hw/amso1100/Kbuild
+++ b/drivers/infiniband/hw/amso1100/Kbuild
@@ -1,6 +1,4 @@
-ifdef CONFIG_INFINIBAND_AMSO1100_DEBUG
-EXTRA_CFLAGS += -DDEBUG
-endif
+ccflags-$(CONFIG_INFINIBAND_AMSO1100_DEBUG) := -DDEBUG
 
 obj-$(CONFIG_INFINIBAND_AMSO1100) += iw_c2.o
 
diff --git a/drivers/infiniband/hw/cxgb3/Makefile b/drivers/infiniband/hw/cxgb3/Makefile
index 7e7b5a6..621619c 100644
--- a/drivers/infiniband/hw/cxgb3/Makefile
+++ b/drivers/infiniband/hw/cxgb3/Makefile
@@ -1,10 +1,8 @@
-EXTRA_CFLAGS += -Idrivers/net/cxgb3
+ccflags-y := -Idrivers/net/cxgb3
 
 obj-$(CONFIG_INFINIBAND_CXGB3) += iw_cxgb3.o
 
 iw_cxgb3-y :=  iwch_cm.o iwch_ev.o iwch_cq.o iwch_qp.o iwch_mem.o \
 	       iwch_provider.o iwch.o cxio_hal.o cxio_resource.o
 
-ifdef CONFIG_INFINIBAND_CXGB3_DEBUG
-EXTRA_CFLAGS += -DDEBUG
-endif
+ccflags-$(CONFIG_INFINIBAND_CXGB3_DEBUG) += -DDEBUG
diff --git a/drivers/infiniband/hw/cxgb4/Makefile b/drivers/infiniband/hw/cxgb4/Makefile
index e31a499..cd20b13 100644
--- a/drivers/infiniband/hw/cxgb4/Makefile
+++ b/drivers/infiniband/hw/cxgb4/Makefile
@@ -1,4 +1,4 @@
-EXTRA_CFLAGS += -Idrivers/net/cxgb4
+ccflags-y := -Idrivers/net/cxgb4
 
 obj-$(CONFIG_INFINIBAND_CXGB4) += iw_cxgb4.o
 
diff --git a/drivers/infiniband/hw/ipath/Makefile b/drivers/infiniband/hw/ipath/Makefile
index fa3df82..4496f28 100644
--- a/drivers/infiniband/hw/ipath/Makefile
+++ b/drivers/infiniband/hw/ipath/Makefile
@@ -1,4 +1,4 @@
-EXTRA_CFLAGS += -DIPATH_IDSTR='"QLogic kernel.org driver"' \
+ccflags-y := -DIPATH_IDSTR='"QLogic kernel.org driver"' \
 	-DIPATH_KERN_TYPE=0
 
 obj-$(CONFIG_INFINIBAND_IPATH) += ib_ipath.o
-- 
1.7.2.1

WARNING: multiple messages have this Message-ID (diff)
From: matt mooney <mfm@muteddisk.com>
To: kernel-janitors@vger.kernel.org
Cc: Tom Tucker <tom@opengridcomputing.com>,
	Steve Wise <swise@opengridcomputing.com>,
	Roland Dreier <rolandd@cisco.com>,
	Sean Hefty <sean.hefty@intel.com>,
	Hal Rosenstock <hal.rosenstock@gmail.com>,
	Ralph Campbell <infinipath@qlogic.com>,
	linux-rdma@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: [PATCH 08/24] infiniband: change to new flag variable
Date: Fri, 24 Sep 2010 19:17:18 +0000	[thread overview]
Message-ID: <b484ccf548e1700e09ac7f731289503bf3e7b3bf.1285355033.git.mfm@muteddisk.com> (raw)
In-Reply-To: <40a2d76d013ad025d08a411992af10f6bbef0a13.1285355033.git.mfm@muteddisk.com>

Replace EXTRA_CFLAGS with ccflags-y.

Signed-off-by: matt mooney <mfm@muteddisk.com>
---
 drivers/infiniband/hw/amso1100/Kbuild |    4 +---
 drivers/infiniband/hw/cxgb3/Makefile  |    6 ++----
 drivers/infiniband/hw/cxgb4/Makefile  |    2 +-
 drivers/infiniband/hw/ipath/Makefile  |    2 +-
 4 files changed, 5 insertions(+), 9 deletions(-)

diff --git a/drivers/infiniband/hw/amso1100/Kbuild b/drivers/infiniband/hw/amso1100/Kbuild
index 06964c4..950dfab 100644
--- a/drivers/infiniband/hw/amso1100/Kbuild
+++ b/drivers/infiniband/hw/amso1100/Kbuild
@@ -1,6 +1,4 @@
-ifdef CONFIG_INFINIBAND_AMSO1100_DEBUG
-EXTRA_CFLAGS += -DDEBUG
-endif
+ccflags-$(CONFIG_INFINIBAND_AMSO1100_DEBUG) := -DDEBUG
 
 obj-$(CONFIG_INFINIBAND_AMSO1100) += iw_c2.o
 
diff --git a/drivers/infiniband/hw/cxgb3/Makefile b/drivers/infiniband/hw/cxgb3/Makefile
index 7e7b5a6..621619c 100644
--- a/drivers/infiniband/hw/cxgb3/Makefile
+++ b/drivers/infiniband/hw/cxgb3/Makefile
@@ -1,10 +1,8 @@
-EXTRA_CFLAGS += -Idrivers/net/cxgb3
+ccflags-y := -Idrivers/net/cxgb3
 
 obj-$(CONFIG_INFINIBAND_CXGB3) += iw_cxgb3.o
 
 iw_cxgb3-y :=  iwch_cm.o iwch_ev.o iwch_cq.o iwch_qp.o iwch_mem.o \
 	       iwch_provider.o iwch.o cxio_hal.o cxio_resource.o
 
-ifdef CONFIG_INFINIBAND_CXGB3_DEBUG
-EXTRA_CFLAGS += -DDEBUG
-endif
+ccflags-$(CONFIG_INFINIBAND_CXGB3_DEBUG) += -DDEBUG
diff --git a/drivers/infiniband/hw/cxgb4/Makefile b/drivers/infiniband/hw/cxgb4/Makefile
index e31a499..cd20b13 100644
--- a/drivers/infiniband/hw/cxgb4/Makefile
+++ b/drivers/infiniband/hw/cxgb4/Makefile
@@ -1,4 +1,4 @@
-EXTRA_CFLAGS += -Idrivers/net/cxgb4
+ccflags-y := -Idrivers/net/cxgb4
 
 obj-$(CONFIG_INFINIBAND_CXGB4) += iw_cxgb4.o
 
diff --git a/drivers/infiniband/hw/ipath/Makefile b/drivers/infiniband/hw/ipath/Makefile
index fa3df82..4496f28 100644
--- a/drivers/infiniband/hw/ipath/Makefile
+++ b/drivers/infiniband/hw/ipath/Makefile
@@ -1,4 +1,4 @@
-EXTRA_CFLAGS += -DIPATH_IDSTR='"QLogic kernel.org driver"' \
+ccflags-y := -DIPATH_IDSTR='"QLogic kernel.org driver"' \
 	-DIPATH_KERN_TYPE=0
 
 obj-$(CONFIG_INFINIBAND_IPATH) += ib_ipath.o
-- 
1.7.2.1


  reply	other threads:[~2010-09-24 19:17 UTC|newest]

Thread overview: 101+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-09-24 19:17 [PATCH 01/24] base: change to new flag variable matt mooney
2010-09-24 19:17 ` matt mooney
2010-09-24 19:17 ` [PATCH 02/24] char: " matt mooney
2010-09-24 19:17   ` matt mooney
2010-09-24 19:17   ` [PATCH 03/24] dma: " matt mooney
2010-09-24 19:17     ` matt mooney
2010-09-24 19:17     ` [PATCH 04/24] hwmon: " matt mooney
2010-09-24 19:17       ` [lm-sensors] " matt mooney
2010-09-24 19:17       ` matt mooney
2010-09-24 19:17       ` [PATCH 05/24] i2c: " matt mooney
2010-09-24 19:17         ` matt mooney
2010-09-24 19:17         ` [PATCH 06/24] ide: " matt mooney
2010-09-24 19:17           ` matt mooney
2010-09-24 19:17           ` [PATCH 07/24] ieee802154: " matt mooney
2010-09-24 19:17             ` matt mooney
2010-09-24 19:17             ` matt mooney [this message]
2010-09-24 19:17               ` [PATCH 08/24] infiniband: " matt mooney
2010-09-24 19:17               ` [PATCH 09/24] input: " matt mooney
2010-09-24 19:17                 ` matt mooney
2010-09-24 19:17                 ` [PATCH 10/24] isdn: " matt mooney
2010-09-24 19:17                   ` matt mooney
2010-09-24 19:17                   ` [PATCH 11/24] memstick: " matt mooney
2010-09-24 19:17                     ` matt mooney
2010-09-24 19:17                     ` [PATCH 12/24] message: " matt mooney
2010-09-24 19:17                       ` matt mooney
2010-09-24 19:17                       ` [PATCH 13/24] misc: " matt mooney
2010-09-24 19:17                         ` matt mooney
2010-09-24 19:17                         ` [PATCH 14/24] mmc: " matt mooney
2010-09-24 19:17                           ` matt mooney
2010-09-24 19:17                           ` [PATCH 15/24] net: " matt mooney
2010-09-24 19:17                             ` matt mooney
2010-09-24 19:17                             ` matt mooney
2010-09-24 19:17                             ` [PATCH 16/24] pci: " matt mooney
2010-09-24 19:17                               ` matt mooney
2010-09-24 19:17                               ` [PATCH 17/24] power: " matt mooney
2010-09-24 19:17                                 ` matt mooney
2010-09-24 19:17                                 ` [PATCH 18/24] pps: " matt mooney
2010-09-24 19:17                                   ` matt mooney
2010-09-24 19:17                                   ` [PATCH 19/24] rapidio: " matt mooney
2010-09-24 19:17                                     ` matt mooney
2010-09-24 19:17                                     ` [PATCH 20/24] rtc: " matt mooney
2010-09-24 19:17                                       ` matt mooney
2010-09-24 19:17                                       ` [PATCH 21/24] scsi: " matt mooney
2010-09-24 19:17                                         ` matt mooney
2010-09-24 19:17                                         ` [PATCH 22/24] spi: " matt mooney
2010-09-24 19:17                                           ` matt mooney
2010-09-24 19:17                                           ` [PATCH 23/24] usb: " matt mooney
2010-09-24 19:17                                             ` matt mooney
2010-09-24 19:17                                             ` [PATCH 24/24] video: " matt mooney
2010-09-24 19:17                                               ` matt mooney
2010-09-24 20:02                                             ` [usb-storage] [PATCH 23/24] usb: " Matthew Dharm
2010-09-24 20:02                                               ` Matthew Dharm
2010-09-24 20:28                                               ` matt mooney
2010-09-24 20:28                                                 ` matt mooney
2010-09-24 23:21                                                 ` matt mooney
2010-09-24 23:21                                                   ` matt mooney
2010-10-08 18:33                                           ` [PATCH 22/24] spi: " Grant Likely
2010-10-08 18:33                                             ` Grant Likely
2010-09-25  1:37                                       ` [rtc-linux] [PATCH 20/24] rtc: " Wan ZongShun
2010-09-25  1:37                                         ` Wan ZongShun
2010-10-15 19:54                               ` [PATCH 16/24] pci: " Jesse Barnes
2010-10-15 19:54                                 ` Jesse Barnes
2010-09-24 19:25                             ` [PATCH 15/24] net: " John W. Linville
2010-09-24 19:25                               ` John W. Linville
2010-09-24 20:01                             ` David Miller
2010-09-24 20:01                               ` David Miller
2010-09-28 13:02                         ` [PATCH 13/24] misc: " Michał Mirosław
2010-09-28 13:02                           ` Michał Mirosław
2010-09-29 22:55                           ` matt mooney
2010-09-29 22:55                             ` matt mooney
2010-09-24 20:01                   ` [PATCH 10/24] isdn: " David Miller
2010-09-24 20:01                     ` David Miller
2010-09-26 10:31             ` [PATCH 07/24] ieee802154: " Dmitry Eremin-Solenikov
2010-09-26 10:31               ` Dmitry Eremin-Solenikov
2010-09-24 20:01           ` [PATCH 06/24] ide: " David Miller
2010-09-24 20:01             ` David Miller
2010-09-25 11:26         ` [PATCH 05/24] i2c: " Jean Delvare
2010-09-25 11:26           ` Jean Delvare
2010-09-25 11:26           ` Jean Delvare
2010-09-26  2:12           ` matt mooney
2010-09-26  2:12             ` matt mooney
2010-09-26  2:12             ` matt mooney
2010-09-26  7:29             ` Jean Delvare
2010-09-26  7:29               ` Jean Delvare
2010-09-26  7:29               ` Jean Delvare
2010-09-26 18:07               ` matt mooney
2010-09-26 18:07                 ` matt mooney
2010-09-26 18:07                 ` matt mooney
2010-09-29 13:56                 ` Jean Delvare
2010-09-29 13:56                   ` Jean Delvare
2010-09-24 23:54       ` [lm-sensors] [PATCH 04/24] hwmon: " Guenter Roeck
2010-09-24 23:54         ` Guenter Roeck
2010-09-24 23:54         ` Guenter Roeck
2010-09-27 15:04       ` Valdis.Kletnieks
2010-09-27 15:04         ` [lm-sensors] " Valdis.Kletnieks
2010-09-27 15:04         ` Valdis.Kletnieks
2010-09-27 17:23         ` matt mooney
2010-09-27 17:23           ` [lm-sensors] " matt mooney
2010-09-27 17:23           ` matt mooney
2010-09-25  2:52 ` [PATCH 01/24] base: " Américo Wang
2010-09-25  2:52   ` Américo Wang

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=b484ccf548e1700e09ac7f731289503bf3e7b3bf.1285355033.git.mfm@muteddisk.com \
    --to=mfm@muteddisk.com \
    --cc=hal.rosenstock@gmail.com \
    --cc=infinipath@qlogic.com \
    --cc=kernel-janitors@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-rdma@vger.kernel.org \
    --cc=rolandd@cisco.com \
    --cc=sean.hefty@intel.com \
    --cc=swise@opengridcomputing.com \
    --cc=tom@opengridcomputing.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.