usb: change to new flag variable
authormatt mooney <mfm@muteddisk.com>
Fri, 24 Sep 2010 19:17:33 +0000 (12:17 -0700)
committerGreg Kroah-Hartman <gregkh@suse.de>
Fri, 22 Oct 2010 17:21:56 +0000 (10:21 -0700)
Replace EXTRA_CFLAGS with ccflags-y.

Signed-off-by: matt mooney <mfm@muteddisk.com>
Acked-by: WANG Cong <xiyou.wangcong@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/usb/atm/Makefile
drivers/usb/core/Makefile
drivers/usb/gadget/Makefile
drivers/usb/host/Makefile
drivers/usb/misc/Makefile
drivers/usb/musb/Makefile
drivers/usb/storage/Makefile
drivers/usb/wusbcore/Makefile

index 4c4a776ab1cd3ba3022d6e4574e1f88d450ff549..d40a126e47a3bfa803f1ec93c05b09fe5cc1c5bc 100644 (file)
@@ -8,6 +8,4 @@ obj-$(CONFIG_USB_UEAGLEATM)     += ueagle-atm.o
 obj-$(CONFIG_USB_ATM)          += usbatm.o
 obj-$(CONFIG_USB_XUSBATM)      += xusbatm.o
 
-ifeq ($(CONFIG_USB_DEBUG),y)
-EXTRA_CFLAGS += -DDEBUG
-endif
+ccflags-$(CONFIG_USB_DEBUG)    := -DDEBUG
index ec16e60299050ab046f9a02dfb15e0207e264516..17c8e2d2a07dca0c1b0cbb97486de02d99b03746 100644 (file)
@@ -16,6 +16,4 @@ endif
 
 obj-$(CONFIG_USB)      += usbcore.o
 
-ifeq ($(CONFIG_USB_DEBUG),y)
-EXTRA_CFLAGS += -DDEBUG
-endif
+ccflags-$(CONFIG_USB_DEBUG) := -DDEBUG
index 27283df37d092c0a3cd77bd285742e005bfffe27..c68200536500bb0eb68ba3fe0144a82120cbcf13 100644 (file)
@@ -1,9 +1,7 @@
 #
 # USB peripheral controller drivers
 #
-ifeq ($(CONFIG_USB_GADGET_DEBUG),y)
-       EXTRA_CFLAGS            += -DDEBUG
-endif
+ccflags-$(CONFIG_USB_GADGET_DEBUG)     := -DDEBUG
 
 obj-$(CONFIG_USB_DUMMY_HCD)    += dummy_hcd.o
 obj-$(CONFIG_USB_NET2280)      += net2280.o
index b6315aa47f7a91592b2ec613c965f86a49c61f5b..f0414429502fb7550ca3ad6258bdcbdfeb341c25 100644 (file)
@@ -2,9 +2,7 @@
 # Makefile for USB Host Controller Drivers
 #
 
-ifeq ($(CONFIG_USB_DEBUG),y)
-       EXTRA_CFLAGS            += -DDEBUG
-endif
+ccflags-$(CONFIG_USB_DEBUG)    := -DDEBUG
 
 isp1760-objs := isp1760-hcd.o isp1760-if.o
 fhci-objs := fhci-hcd.o fhci-hub.o fhci-q.o fhci-mem.o \
index d203ff6870e4814ea9462da1fe9fc28ca5ec385e..d2633c035626399faa9dd582d0be6579882db7fa 100644 (file)
@@ -26,6 +26,4 @@ obj-$(CONFIG_USB_YUREX)               += yurex.o
 
 obj-$(CONFIG_USB_SISUSBVGA)    += sisusbvga/
 
-ifeq ($(CONFIG_USB_DEBUG),y)
-EXTRA_CFLAGS += -DDEBUG
-endif
+ccflags-$(CONFIG_USB_DEBUG)    := -DDEBUG
index f664ecfa21c467419b1d2a17da26d98603214cfa..16aaae28714d8df521fc6c6baf2da86724fbd01c 100644 (file)
@@ -78,6 +78,4 @@ endif
 
 # Debugging
 
-ifeq ($(CONFIG_USB_MUSB_DEBUG),y)
-       EXTRA_CFLAGS += -DDEBUG
-endif
+ccflags-$(CONFIG_USB_MUSB_DEBUG) := -DDEBUG
index 0332aa5df24fc3357a105941e5941451e51711b9..65dbf652487e4938154a5ab93c94ccf09d820b91 100644 (file)
@@ -5,7 +5,7 @@
 # Rewritten to use lists instead of if-statements.
 #
 
-EXTRA_CFLAGS   := -Idrivers/scsi
+ccflags-y      := -Idrivers/scsi
 
 obj-$(CONFIG_USB_UAS)          += uas.o
 obj-$(CONFIG_USB_STORAGE)      += usb-storage.o
index 75f1ade66258bf3a355b7391d8855d16c57d9e8b..f0d8045c802e7525173ef880ad542bbce5506720 100644 (file)
@@ -21,6 +21,4 @@ wusb-wa-objs :=       wa-hc.o         \
                wa-rpipe.o      \
                wa-xfer.o
 
-ifeq ($(CONFIG_USB_WUSB_CBAF_DEBUG),y)
-EXTRA_CFLAGS += -DDEBUG
-endif
+ccflags-$(CONFIG_USB_WUSB_CBAF_DEBUG) := -DDEBUG