public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 01/33] Staging: autofs: Makefile: replace the use of <module>-objs with <module>-y
@ 2010-10-08  0:01 Tracey Dent
  2010-10-08  0:01 ` [PATCH 02/33] Staging: batman-adv: " Tracey Dent
                   ` (31 more replies)
  0 siblings, 32 replies; 36+ messages in thread
From: Tracey Dent @ 2010-10-08  0:01 UTC (permalink / raw)
  To: greg; +Cc: linux-kernel, kernel-janitors, sam, linux-kbuild, Tracey Dent

Changed Makefile <module>-objs to <module>-y lines.

Signed-off-by: Tracey Dent <tdent48227@gmail.com>
---
 drivers/staging/autofs/Makefile |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/staging/autofs/Makefile b/drivers/staging/autofs/Makefile
index 453a60f..f48781c 100644
--- a/drivers/staging/autofs/Makefile
+++ b/drivers/staging/autofs/Makefile
@@ -4,4 +4,4 @@
 
 obj-$(CONFIG_AUTOFS_FS) += autofs.o
 
-autofs-objs := dirhash.o init.o inode.o root.o symlink.o waitq.o
+autofs-y := dirhash.o init.o inode.o root.o symlink.o waitq.o
-- 
1.7.3.1.50.g1e633


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

* [PATCH 02/33] Staging: batman-adv: Makefile: replace the use of <module>-objs with <module>-y
  2010-10-08  0:01 [PATCH 01/33] Staging: autofs: Makefile: replace the use of <module>-objs with <module>-y Tracey Dent
@ 2010-10-08  0:01 ` Tracey Dent
  2010-10-08  0:01 ` [PATCH 03/33] Staging: bcm: " Tracey Dent
                   ` (30 subsequent siblings)
  31 siblings, 0 replies; 36+ messages in thread
From: Tracey Dent @ 2010-10-08  0:01 UTC (permalink / raw)
  To: greg; +Cc: linux-kernel, kernel-janitors, sam, linux-kbuild, Tracey Dent

Changed <module>-objs to <module>-y n Makefile.

Signed-off-by: Tracey Dent <tdent48227@gmail.com>
---
 drivers/staging/batman-adv/Makefile |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/staging/batman-adv/Makefile b/drivers/staging/batman-adv/Makefile
index 4b5c434..7892428 100644
--- a/drivers/staging/batman-adv/Makefile
+++ b/drivers/staging/batman-adv/Makefile
@@ -19,4 +19,4 @@
 #
 
 obj-$(CONFIG_BATMAN_ADV) += batman-adv.o
-batman-adv-objs := main.o bat_debugfs.o bat_sysfs.o send.o routing.o soft-interface.o icmp_socket.o translation-table.o bitarray.o hash.o ring_buffer.o vis.o hard-interface.o aggregation.o originator.o unicast.o
+batman-adv-y := main.o bat_debugfs.o bat_sysfs.o send.o routing.o soft-interface.o icmp_socket.o translation-table.o bitarray.o hash.o ring_buffer.o vis.o hard-interface.o aggregation.o originator.o unicast.o
-- 
1.7.3.1.50.g1e633


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

* [PATCH 03/33] Staging: bcm: Makefile: replace the use of <module>-objs with <module>-y
  2010-10-08  0:01 [PATCH 01/33] Staging: autofs: Makefile: replace the use of <module>-objs with <module>-y Tracey Dent
  2010-10-08  0:01 ` [PATCH 02/33] Staging: batman-adv: " Tracey Dent
@ 2010-10-08  0:01 ` Tracey Dent
  2010-10-08  0:01 ` [PATCH 04/33] Staging: comedi: " Tracey Dent
                   ` (29 subsequent siblings)
  31 siblings, 0 replies; 36+ messages in thread
From: Tracey Dent @ 2010-10-08  0:01 UTC (permalink / raw)
  To: greg; +Cc: linux-kernel, kernel-janitors, sam, linux-kbuild, Tracey Dent

Changed <module>-objs to <module>-y in Makefile.

Signed-off-by: Tracey Dent <tdent48227@gmail.com>
---
 drivers/staging/bcm/Makefile |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/staging/bcm/Makefile b/drivers/staging/bcm/Makefile
index 3fdec2e..c3ae25a 100644
--- a/drivers/staging/bcm/Makefile
+++ b/drivers/staging/bcm/Makefile
@@ -4,7 +4,7 @@
 
 obj-$(CONFIG_BCM_WIMAX) +=	bcm_wimax.o
 
-bcm_wimax-objs :=  InterfaceDld.o InterfaceIdleMode.o InterfaceInit.o InterfaceRx.o \
+bcm_wimax-y :=  InterfaceDld.o InterfaceIdleMode.o InterfaceInit.o InterfaceRx.o \
 		InterfaceIsr.o InterfaceMisc.o InterfaceTx.o \
 		Arp.o CmHost.o Debug.o IPv6Protocol.o Qos.o Transmit.o\
 		Bcmnet.o DDRInit.o HandleControlPacket.o\
-- 
1.7.3.1.50.g1e633


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

* [PATCH 04/33] Staging: comedi: Makefile: replace the use of <module>-objs with <module>-y
  2010-10-08  0:01 [PATCH 01/33] Staging: autofs: Makefile: replace the use of <module>-objs with <module>-y Tracey Dent
  2010-10-08  0:01 ` [PATCH 02/33] Staging: batman-adv: " Tracey Dent
  2010-10-08  0:01 ` [PATCH 03/33] Staging: bcm: " Tracey Dent
@ 2010-10-08  0:01 ` Tracey Dent
  2010-10-08  0:01 ` [PATCH 05/33] Staging: crystalhd: " Tracey Dent
                   ` (28 subsequent siblings)
  31 siblings, 0 replies; 36+ messages in thread
From: Tracey Dent @ 2010-10-08  0:01 UTC (permalink / raw)
  To: greg; +Cc: linux-kernel, kernel-janitors, sam, linux-kbuild, Tracey Dent

Changed <module>-objs to <module>-y in Makefile.

Signed-off-by: Tracey Dent <tdent48227@gmail.com>
---
 drivers/staging/comedi/Makefile |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/staging/comedi/Makefile b/drivers/staging/comedi/Makefile
index 20afea3..8dbd306 100644
--- a/drivers/staging/comedi/Makefile
+++ b/drivers/staging/comedi/Makefile
@@ -3,7 +3,7 @@ obj-$(CONFIG_COMEDI) += comedi.o
 obj-$(CONFIG_COMEDI)	+= kcomedilib/
 obj-$(CONFIG_COMEDI)	+= drivers/
 
-comedi-objs :=		\
+comedi-y :=		\
 	comedi_fops.o	\
 	proc.o		\
 	range.o		\
-- 
1.7.3.1.50.g1e633


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

* [PATCH 05/33] Staging: crystalhd: Makefile: replace the use of <module>-objs with <module>-y
  2010-10-08  0:01 [PATCH 01/33] Staging: autofs: Makefile: replace the use of <module>-objs with <module>-y Tracey Dent
                   ` (2 preceding siblings ...)
  2010-10-08  0:01 ` [PATCH 04/33] Staging: comedi: " Tracey Dent
@ 2010-10-08  0:01 ` Tracey Dent
  2010-10-08  0:01 ` [PATCH 06/33] Staging: cx25821: " Tracey Dent
                   ` (27 subsequent siblings)
  31 siblings, 0 replies; 36+ messages in thread
From: Tracey Dent @ 2010-10-08  0:01 UTC (permalink / raw)
  To: greg; +Cc: linux-kernel, kernel-janitors, sam, linux-kbuild, Tracey Dent

Changed <module>-objs to <module>-y in Makefile.

Signed-off-by: Tracey Dent <tdent48227@gmail.com>
---
 drivers/staging/crystalhd/Makefile |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/staging/crystalhd/Makefile b/drivers/staging/crystalhd/Makefile
index e2af0ce..c31657a 100644
--- a/drivers/staging/crystalhd/Makefile
+++ b/drivers/staging/crystalhd/Makefile
@@ -1,6 +1,6 @@
 obj-$(CONFIG_CRYSTALHD)	+= crystalhd.o
 
-crystalhd-objs		:= crystalhd_cmds.o	\
+crystalhd-y		:= crystalhd_cmds.o	\
 			   crystalhd_hw.o	\
 			   crystalhd_lnx.o	\
 			   crystalhd_misc.o
-- 
1.7.3.1.50.g1e633


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

* [PATCH 06/33] Staging: cx25821: Makefile: replace the use of <module>-objs with <module>-y
  2010-10-08  0:01 [PATCH 01/33] Staging: autofs: Makefile: replace the use of <module>-objs with <module>-y Tracey Dent
                   ` (3 preceding siblings ...)
  2010-10-08  0:01 ` [PATCH 05/33] Staging: crystalhd: " Tracey Dent
@ 2010-10-08  0:01 ` Tracey Dent
  2010-10-08  0:01 ` [PATCH 07/33] Staging: cxt1e1: " Tracey Dent
                   ` (26 subsequent siblings)
  31 siblings, 0 replies; 36+ messages in thread
From: Tracey Dent @ 2010-10-08  0:01 UTC (permalink / raw)
  To: greg; +Cc: linux-kernel, kernel-janitors, sam, linux-kbuild, Tracey Dent

Changed <module>-objs to <module>-y in Makefile.

Signed-off-by: Tracey Dent <tdent48227@gmail.com>
---
 drivers/staging/cx25821/Makefile |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/staging/cx25821/Makefile b/drivers/staging/cx25821/Makefile
index 6448364..aedde18 100644
--- a/drivers/staging/cx25821/Makefile
+++ b/drivers/staging/cx25821/Makefile
@@ -1,4 +1,4 @@
-cx25821-objs   := cx25821-core.o cx25821-cards.o cx25821-i2c.o \
+cx25821-y   := cx25821-core.o cx25821-cards.o cx25821-i2c.o \
 		       cx25821-gpio.o cx25821-medusa-video.o \
 		       cx25821-video.o cx25821-video-upstream.o \
 		       cx25821-video-upstream-ch2.o \
-- 
1.7.3.1.50.g1e633


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

* [PATCH 07/33] Staging: cxt1e1: Makefile: replace the use of <module>-objs with <module>-y
  2010-10-08  0:01 [PATCH 01/33] Staging: autofs: Makefile: replace the use of <module>-objs with <module>-y Tracey Dent
                   ` (4 preceding siblings ...)
  2010-10-08  0:01 ` [PATCH 06/33] Staging: cx25821: " Tracey Dent
@ 2010-10-08  0:01 ` Tracey Dent
  2010-10-08  0:01 ` [PATCH 08/33] Staging: easycap: " Tracey Dent
                   ` (25 subsequent siblings)
  31 siblings, 0 replies; 36+ messages in thread
From: Tracey Dent @ 2010-10-08  0:01 UTC (permalink / raw)
  To: greg; +Cc: linux-kernel, kernel-janitors, sam, linux-kbuild, Tracey Dent

Changed <module>-objs to <module>-y in Makefile.

Signed-off-by: Tracey Dent <tdent48227@gmail.com>
---
 drivers/staging/cxt1e1/Makefile |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/staging/cxt1e1/Makefile b/drivers/staging/cxt1e1/Makefile
index a524a62..e99b823 100644
--- a/drivers/staging/cxt1e1/Makefile
+++ b/drivers/staging/cxt1e1/Makefile
@@ -4,7 +4,7 @@ ccflags-y := -DSBE_PMCC4_ENABLE
 ccflags-y += -DSBE_ISR_TASKLET
 ccflags-y += -DSBE_INCLUDE_SYMBOLS
 
-cxt1e1-objs += 	\
+cxt1e1-y := 	\
   ossiRelease.o 	\
   musycc.o 		\
   pmcc4_drv.o 		\
-- 
1.7.3.1.50.g1e633


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

* [PATCH 08/33] Staging: easycap: Makefile: replace the use of <module>-objs with <module>-y
  2010-10-08  0:01 [PATCH 01/33] Staging: autofs: Makefile: replace the use of <module>-objs with <module>-y Tracey Dent
                   ` (5 preceding siblings ...)
  2010-10-08  0:01 ` [PATCH 07/33] Staging: cxt1e1: " Tracey Dent
@ 2010-10-08  0:01 ` Tracey Dent
  2010-10-08  0:01 ` [PATCH 09/33] Staging: go7007: Makefile: makefile cleanup Tracey Dent
                   ` (24 subsequent siblings)
  31 siblings, 0 replies; 36+ messages in thread
From: Tracey Dent @ 2010-10-08  0:01 UTC (permalink / raw)
  To: greg; +Cc: linux-kernel, kernel-janitors, sam, linux-kbuild, Tracey Dent

Changed <module>-objs to <module>-y in Makefile.

Signed-off-by: Tracey Dent <tdent48227@gmail.com>
---
 drivers/staging/easycap/Makefile |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/staging/easycap/Makefile b/drivers/staging/easycap/Makefile
index 680f370..8a3d911 100644
--- a/drivers/staging/easycap/Makefile
+++ b/drivers/staging/easycap/Makefile
@@ -1,9 +1,9 @@
 
 obj-$(CONFIG_EASYCAP)	+= easycap.o
 
-easycap-objs	:= easycap_main.o easycap_low.o easycap_sound.o
-easycap-objs	+= easycap_ioctl.o easycap_settings.o
-easycap-objs	+= easycap_testcard.o
+easycap-y	:= easycap_main.o easycap_low.o easycap_sound.o
+easycap-y	+= easycap_ioctl.o easycap_settings.o
+easycap-y	+= easycap_testcard.o
 
 ccflags-y := -Wall
 # Impose all or none of the following:
-- 
1.7.3.1.50.g1e633


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

* [PATCH 09/33] Staging: go7007: Makefile: makefile cleanup
  2010-10-08  0:01 [PATCH 01/33] Staging: autofs: Makefile: replace the use of <module>-objs with <module>-y Tracey Dent
                   ` (6 preceding siblings ...)
  2010-10-08  0:01 ` [PATCH 08/33] Staging: easycap: " Tracey Dent
@ 2010-10-08  0:01 ` Tracey Dent
  2010-10-08  0:01 ` [PATCH 10/33] Staging: et131x: Makefile: replace the use of <module>-objs with <module>-y Tracey Dent
                   ` (23 subsequent siblings)
  31 siblings, 0 replies; 36+ messages in thread
From: Tracey Dent @ 2010-10-08  0:01 UTC (permalink / raw)
  To: greg; +Cc: linux-kernel, kernel-janitors, sam, linux-kbuild, Tracey Dent

Changed <module>-objs to <module>-y in Makefile. Also, Replace EXTRA_CFLAGS with ccflags-y

Signed-off-by: Tracey Dent <tdent48227@gmail.com>
---
 drivers/staging/go7007/Makefile |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/drivers/staging/go7007/Makefile b/drivers/staging/go7007/Makefile
index d37b7ed..60a9185 100644
--- a/drivers/staging/go7007/Makefile
+++ b/drivers/staging/go7007/Makefile
@@ -14,10 +14,10 @@ obj-$(CONFIG_VIDEO_GO7007_UDA1342) += wis-uda1342.o
 obj-$(CONFIG_VIDEO_GO7007_SONY_TUNER) += wis-sony-tuner.o
 obj-$(CONFIG_VIDEO_GO7007_TW2804) += wis-tw2804.o
 
-go7007-objs += go7007-v4l2.o go7007-driver.o go7007-i2c.o go7007-fw.o \
+go7007-y := go7007-v4l2.o go7007-driver.o go7007-i2c.o go7007-fw.o \
 		snd-go7007.o
 
-s2250-objs += s2250-board.o
+s2250-y := s2250-board.o
 
 # Uncomment when the saa7134 patches get into upstream
 #ifneq ($(CONFIG_VIDEO_SAA7134),)
@@ -27,8 +27,8 @@ s2250-objs += s2250-board.o
 
 # S2250 needs cypress ezusb loader from dvb-usb
 ifneq ($(CONFIG_VIDEO_GO7007_USB_S2250_BOARD),)
-EXTRA_CFLAGS += -Idrivers/media/dvb/dvb-usb
+ccflags-y := -Idrivers/media/dvb/dvb-usb
 endif
 
-EXTRA_CFLAGS += -Idrivers/media/dvb/frontends
-EXTRA_CFLAGS += -Idrivers/media/dvb/dvb-core
+ccflags-y += -Idrivers/media/dvb/frontends
+ccflags-y += -Idrivers/media/dvb/dvb-core
-- 
1.7.3.1.50.g1e633


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

* [PATCH 10/33] Staging: et131x: Makefile: replace the use of <module>-objs with <module>-y
  2010-10-08  0:01 [PATCH 01/33] Staging: autofs: Makefile: replace the use of <module>-objs with <module>-y Tracey Dent
                   ` (7 preceding siblings ...)
  2010-10-08  0:01 ` [PATCH 09/33] Staging: go7007: Makefile: makefile cleanup Tracey Dent
@ 2010-10-08  0:01 ` Tracey Dent
  2010-10-08  0:01 ` [PATCH 11/33] Staging: ft1000:ft1000-pcmia: " Tracey Dent
                   ` (22 subsequent siblings)
  31 siblings, 0 replies; 36+ messages in thread
From: Tracey Dent @ 2010-10-08  0:01 UTC (permalink / raw)
  To: greg; +Cc: linux-kernel, kernel-janitors, sam, linux-kbuild, Tracey Dent

Changed <module>-objs to <module>-y in Makefile.

Signed-off-by: Tracey Dent <tdent48227@gmail.com>
---
 drivers/staging/et131x/Makefile |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/staging/et131x/Makefile b/drivers/staging/et131x/Makefile
index 95c645d..dfcd2bf 100644
--- a/drivers/staging/et131x/Makefile
+++ b/drivers/staging/et131x/Makefile
@@ -4,7 +4,7 @@
 
 obj-$(CONFIG_ET131X) += et131x.o
 
-et131x-objs :=	et1310_eeprom.o \
+et131x-y :=	et1310_eeprom.o \
 		et1310_mac.o \
 		et1310_phy.o \
 		et1310_pm.o \
-- 
1.7.3.1.50.g1e633


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

* [PATCH 11/33] Staging: ft1000:ft1000-pcmia:  Makefile: replace the use of <module>-objs with <module>-y
  2010-10-08  0:01 [PATCH 01/33] Staging: autofs: Makefile: replace the use of <module>-objs with <module>-y Tracey Dent
                   ` (8 preceding siblings ...)
  2010-10-08  0:01 ` [PATCH 10/33] Staging: et131x: Makefile: replace the use of <module>-objs with <module>-y Tracey Dent
@ 2010-10-08  0:01 ` Tracey Dent
  2010-10-08  0:01 ` [PATCH 12/33] Staging: ft1000: ft1000-usb: " Tracey Dent
                   ` (21 subsequent siblings)
  31 siblings, 0 replies; 36+ messages in thread
From: Tracey Dent @ 2010-10-08  0:01 UTC (permalink / raw)
  To: greg; +Cc: linux-kernel, kernel-janitors, sam, linux-kbuild, Tracey Dent

Changed <module>-objs to <module>-y in Makefile.

Signed-off-by: Tracey Dent <tdent48227@gmail.com>
---
 drivers/staging/ft1000/ft1000-pcmcia/Makefile |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/staging/ft1000/ft1000-pcmcia/Makefile b/drivers/staging/ft1000/ft1000-pcmcia/Makefile
index 30ad208..660b7a5 100644
--- a/drivers/staging/ft1000/ft1000-pcmcia/Makefile
+++ b/drivers/staging/ft1000/ft1000-pcmcia/Makefile
@@ -1,3 +1,3 @@
 obj-$(CONFIG_FT1000_PCMCIA) = ft1000_pcmcia.o
-ft1000_pcmcia-objs := ft1000_hw.o ft1000_dnld.o ft1000_proc.o ft1000_cs.o
+ft1000_pcmcia-y := ft1000_hw.o ft1000_dnld.o ft1000_proc.o ft1000_cs.o
 
-- 
1.7.3.1.50.g1e633


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

* [PATCH 12/33] Staging: ft1000: ft1000-usb: Makefile: replace the use of <module>-objs with <module>-y
  2010-10-08  0:01 [PATCH 01/33] Staging: autofs: Makefile: replace the use of <module>-objs with <module>-y Tracey Dent
                   ` (9 preceding siblings ...)
  2010-10-08  0:01 ` [PATCH 11/33] Staging: ft1000:ft1000-pcmia: " Tracey Dent
@ 2010-10-08  0:01 ` Tracey Dent
  2010-10-08  0:01 ` [PATCH 13/33] Staging: hv: " Tracey Dent
                   ` (20 subsequent siblings)
  31 siblings, 0 replies; 36+ messages in thread
From: Tracey Dent @ 2010-10-08  0:01 UTC (permalink / raw)
  To: greg; +Cc: linux-kernel, kernel-janitors, sam, linux-kbuild, Tracey Dent

Changed <module>-objs to <module>-y in Makefile.

Signed-off-by: Tracey Dent <tdent48227@gmail.com>
---
 drivers/staging/ft1000/ft1000-usb/Makefile |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/staging/ft1000/ft1000-usb/Makefile b/drivers/staging/ft1000/ft1000-usb/Makefile
index 7845c47..dd87ecd 100644
--- a/drivers/staging/ft1000/ft1000-usb/Makefile
+++ b/drivers/staging/ft1000/ft1000-usb/Makefile
@@ -1,3 +1,3 @@
 obj-$(CONFIG_FT1000_USB) += ft1000.o
 
-ft1000-objs := ft1000_chdev.o ft1000_download.o ft1000_hw.o ft1000_proc.o ft1000_usb.o
+ft1000-y := ft1000_chdev.o ft1000_download.o ft1000_hw.o ft1000_proc.o ft1000_usb.o
-- 
1.7.3.1.50.g1e633


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

* [PATCH 13/33] Staging: hv: Makefile: replace the use of <module>-objs with <module>-y
  2010-10-08  0:01 [PATCH 01/33] Staging: autofs: Makefile: replace the use of <module>-objs with <module>-y Tracey Dent
                   ` (10 preceding siblings ...)
  2010-10-08  0:01 ` [PATCH 12/33] Staging: ft1000: ft1000-usb: " Tracey Dent
@ 2010-10-08  0:01 ` Tracey Dent
  2010-10-08  0:01 ` [PATCH 14/33] Staging: intel_sst: " Tracey Dent
                   ` (19 subsequent siblings)
  31 siblings, 0 replies; 36+ messages in thread
From: Tracey Dent @ 2010-10-08  0:01 UTC (permalink / raw)
  To: greg; +Cc: linux-kernel, kernel-janitors, sam, linux-kbuild, Tracey Dent

Changed <module>-objs to <module>-y in Makefile.

Signed-off-by: Tracey Dent <tdent48227@gmail.com>
---
 drivers/staging/hv/Makefile |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/drivers/staging/hv/Makefile b/drivers/staging/hv/Makefile
index b63515c..cd1c43a 100644
--- a/drivers/staging/hv/Makefile
+++ b/drivers/staging/hv/Makefile
@@ -4,9 +4,9 @@ obj-$(CONFIG_HYPERV_BLOCK)	+= hv_blkvsc.o
 obj-$(CONFIG_HYPERV_NET)	+= hv_netvsc.o
 obj-$(CONFIG_HYPERV_UTILS)	+= hv_utils.o
 
-hv_vmbus-objs := vmbus_drv.o osd.o \
+hv_vmbus-y := vmbus_drv.o osd.o \
 		 vmbus.o hv.o connection.o channel.o \
 		 channel_mgmt.o channel_interface.o ring_buffer.o
-hv_storvsc-objs := storvsc_drv.o storvsc.o
-hv_blkvsc-objs := blkvsc_drv.o blkvsc.o
-hv_netvsc-objs := netvsc_drv.o netvsc.o rndis_filter.o
+hv_storvsc-y := storvsc_drv.o storvsc.o
+hv_blkvsc-y := blkvsc_drv.o blkvsc.o
+hv_netvsc-y := netvsc_drv.o netvsc.o rndis_filter.o
-- 
1.7.3.1.50.g1e633


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

* [PATCH 14/33] Staging: intel_sst: Makefile: replace the use of <module>-objs with <module>-y
  2010-10-08  0:01 [PATCH 01/33] Staging: autofs: Makefile: replace the use of <module>-objs with <module>-y Tracey Dent
                   ` (11 preceding siblings ...)
  2010-10-08  0:01 ` [PATCH 13/33] Staging: hv: " Tracey Dent
@ 2010-10-08  0:01 ` Tracey Dent
  2010-10-08  0:01 ` [PATCH 15/33] Staging: keucr: Makefile: Makefile clean up Tracey Dent
                   ` (18 subsequent siblings)
  31 siblings, 0 replies; 36+ messages in thread
From: Tracey Dent @ 2010-10-08  0:01 UTC (permalink / raw)
  To: greg; +Cc: linux-kernel, kernel-janitors, sam, linux-kbuild, Tracey Dent

Changed <module>-objs to <module>-y in Makefile.

Signed-off-by: Tracey Dent <tdent48227@gmail.com>
---
 drivers/staging/intel_sst/Makefile |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/staging/intel_sst/Makefile b/drivers/staging/intel_sst/Makefile
index 1deda46..9eb7c15 100644
--- a/drivers/staging/intel_sst/Makefile
+++ b/drivers/staging/intel_sst/Makefile
@@ -1,7 +1,7 @@
 #
 # Makefile for Intel MID Audio drivers
 #
-snd-intel-sst-objs := intel_sst.o intel_sst_ipc.o intel_sst_stream.o intel_sst_drv_interface.o intel_sst_dsp.o intel_sst_pvt.o intel_sst_stream_encoded.o intel_sst_app_interface.o
-snd-intelmid-objs := intelmid.o intelmid_msic_control.o intelmid_ctrl.o intelmid_pvt.o intelmid_v0_control.o intelmid_v1_control.o intelmid_v2_control.o
+snd-intel-sst-y := intel_sst.o intel_sst_ipc.o intel_sst_stream.o intel_sst_drv_interface.o intel_sst_dsp.o intel_sst_pvt.o intel_sst_stream_encoded.o intel_sst_app_interface.o
+snd-intelmid-y := intelmid.o intelmid_msic_control.o intelmid_ctrl.o intelmid_pvt.o intelmid_v0_control.o intelmid_v1_control.o intelmid_v2_control.o
 obj-$(CONFIG_SND_INTEL_SST) += snd-intel-sst.o
 obj-$(CONFIG_SND_INTELMID) += snd-intelmid.o
-- 
1.7.3.1.50.g1e633


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

* [PATCH 15/33] Staging: keucr: Makefile: Makefile clean up
  2010-10-08  0:01 [PATCH 01/33] Staging: autofs: Makefile: replace the use of <module>-objs with <module>-y Tracey Dent
                   ` (12 preceding siblings ...)
  2010-10-08  0:01 ` [PATCH 14/33] Staging: intel_sst: " Tracey Dent
@ 2010-10-08  0:01 ` Tracey Dent
  2010-10-08  0:01 ` [PATCH 16/33] Staging: line6: Makefile: replace the use of <module>-objs with <module>-y Tracey Dent
                   ` (17 subsequent siblings)
  31 siblings, 0 replies; 36+ messages in thread
From: Tracey Dent @ 2010-10-08  0:01 UTC (permalink / raw)
  To: greg; +Cc: linux-kernel, kernel-janitors, sam, linux-kbuild, Tracey Dent

Changed <module>-objs to <module>-y in Makefile.
Also, Replace EXTRA_CFLAGS with ccflags-y.

Signed-off-by: Tracey Dent <tdent48227@gmail.com>
---
 drivers/staging/keucr/Makefile |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/staging/keucr/Makefile b/drivers/staging/keucr/Makefile
index 2a4200f..5c19b7b 100644
--- a/drivers/staging/keucr/Makefile
+++ b/drivers/staging/keucr/Makefile
@@ -1,8 +1,8 @@
-EXTRA_CFLAGS += -Idrivers/scsi
+ccflags-y := -Idrivers/scsi
 
 obj-$(CONFIG_USB_ENESTORAGE)	+= keucr.o
 
-keucr-objs :=			\
+keucr-y :=			\
 		usb.o		\
 		scsiglue.o	\
 		transport.o	\
-- 
1.7.3.1.50.g1e633


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

* [PATCH 16/33] Staging: line6: Makefile: replace the use of <module>-objs with <module>-y
  2010-10-08  0:01 [PATCH 01/33] Staging: autofs: Makefile: replace the use of <module>-objs with <module>-y Tracey Dent
                   ` (13 preceding siblings ...)
  2010-10-08  0:01 ` [PATCH 15/33] Staging: keucr: Makefile: Makefile clean up Tracey Dent
@ 2010-10-08  0:01 ` Tracey Dent
  2010-10-08  0:01 ` [PATCH 17/33] Staging: octeon: " Tracey Dent
                   ` (16 subsequent siblings)
  31 siblings, 0 replies; 36+ messages in thread
From: Tracey Dent @ 2010-10-08  0:01 UTC (permalink / raw)
  To: greg; +Cc: linux-kernel, kernel-janitors, sam, linux-kbuild, Tracey Dent

Changed <module>-objs to <module>-y in Makefile.

Signed-off-by: Tracey Dent <tdent48227@gmail.com>
---
 drivers/staging/line6/Makefile |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/staging/line6/Makefile b/drivers/staging/line6/Makefile
index a1c93ed..de6bd12 100644
--- a/drivers/staging/line6/Makefile
+++ b/drivers/staging/line6/Makefile
@@ -1,6 +1,6 @@
 obj-$(CONFIG_LINE6_USB)		+= line6usb.o
 
-line6usb-objs := 		\
+line6usb-y := 		\
 		audio.o		\
 		capture.o	\
 		control.o	\
-- 
1.7.3.1.50.g1e633


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

* [PATCH 17/33] Staging: octeon: Makefile: replace the use of <module>-objs with <module>-y
  2010-10-08  0:01 [PATCH 01/33] Staging: autofs: Makefile: replace the use of <module>-objs with <module>-y Tracey Dent
                   ` (14 preceding siblings ...)
  2010-10-08  0:01 ` [PATCH 16/33] Staging: line6: Makefile: replace the use of <module>-objs with <module>-y Tracey Dent
@ 2010-10-08  0:01 ` Tracey Dent
  2010-10-08  0:01 ` [PATCH 18/33] Staging: rt2860: " Tracey Dent
                   ` (15 subsequent siblings)
  31 siblings, 0 replies; 36+ messages in thread
From: Tracey Dent @ 2010-10-08  0:01 UTC (permalink / raw)
  To: greg; +Cc: linux-kernel, kernel-janitors, sam, linux-kbuild, Tracey Dent

Changed <module>-objs to <module>-y in Makefile.

Signed-off-by: Tracey Dent <tdent48227@gmail.com>
---
 drivers/staging/octeon/Makefile |   20 ++++++++++----------
 1 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/drivers/staging/octeon/Makefile b/drivers/staging/octeon/Makefile
index 87447c1..fc850ba 100644
--- a/drivers/staging/octeon/Makefile
+++ b/drivers/staging/octeon/Makefile
@@ -11,16 +11,16 @@
 
 obj-${CONFIG_OCTEON_ETHERNET} :=  octeon-ethernet.o
 
-octeon-ethernet-objs := ethernet.o
-octeon-ethernet-objs += ethernet-mdio.o
-octeon-ethernet-objs += ethernet-mem.o
-octeon-ethernet-objs += ethernet-rgmii.o
-octeon-ethernet-objs += ethernet-rx.o
-octeon-ethernet-objs += ethernet-sgmii.o
-octeon-ethernet-objs += ethernet-spi.o
-octeon-ethernet-objs += ethernet-tx.o
-octeon-ethernet-objs += ethernet-xaui.o
-octeon-ethernet-objs += cvmx-pko.o cvmx-spi.o cvmx-cmd-queue.o \
+octeon-ethernet-y := ethernet.o
+octeon-ethernet-y += ethernet-mdio.o
+octeon-ethernet-y += ethernet-mem.o
+octeon-ethernet-y += ethernet-rgmii.o
+octeon-ethernet-y += ethernet-rx.o
+octeon-ethernet-y += ethernet-sgmii.o
+octeon-ethernet-y += ethernet-spi.o
+octeon-ethernet-y += ethernet-tx.o
+octeon-ethernet-y += ethernet-xaui.o
+octeon-ethernet-y += cvmx-pko.o cvmx-spi.o cvmx-cmd-queue.o \
 	cvmx-helper-board.o cvmx-helper.o cvmx-helper-xaui.o \
 	cvmx-helper-rgmii.o cvmx-helper-sgmii.o cvmx-helper-npi.o \
 	cvmx-helper-loop.o cvmx-helper-spi.o cvmx-helper-util.o \
-- 
1.7.3.1.50.g1e633


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

* [PATCH 18/33] Staging: rt2860: Makefile: replace the use of <module>-objs with <module>-y
  2010-10-08  0:01 [PATCH 01/33] Staging: autofs: Makefile: replace the use of <module>-objs with <module>-y Tracey Dent
                   ` (15 preceding siblings ...)
  2010-10-08  0:01 ` [PATCH 17/33] Staging: octeon: " Tracey Dent
@ 2010-10-08  0:01 ` Tracey Dent
  2010-10-08  0:01 ` [PATCH 19/33] Staging: rt2870: " Tracey Dent
                   ` (14 subsequent siblings)
  31 siblings, 0 replies; 36+ messages in thread
From: Tracey Dent @ 2010-10-08  0:01 UTC (permalink / raw)
  To: greg; +Cc: linux-kernel, kernel-janitors, sam, linux-kbuild, Tracey Dent

Changed <module>-objs to <module>-y in Makefile.

Signed-off-by: Tracey Dent <tdent48227@gmail.com>
---
 drivers/staging/rt2860/Makefile |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/staging/rt2860/Makefile b/drivers/staging/rt2860/Makefile
index d816ddb..6dd0aa5 100644
--- a/drivers/staging/rt2860/Makefile
+++ b/drivers/staging/rt2860/Makefile
@@ -6,7 +6,7 @@ ccflags-y += -DRTMP_MAC_PCI -DRTMP_PCI_SUPPORT -DRT2860
 ccflags-y += -DRTMP_RF_RW_SUPPORT -DRTMP_EFUSE_SUPPORT -DRT30xx -DRT3090
 ccflags-y += -DDBG
 
-rt2860sta-objs :=	\
+rt2860sta-y :=	\
 	common/crypt_md5.o	\
 	common/crypt_sha2.o	\
 	common/crypt_hmac.o	\
-- 
1.7.3.1.50.g1e633


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

* [PATCH 19/33] Staging: rt2870: Makefile: replace the use of <module>-objs with <module>-y
  2010-10-08  0:01 [PATCH 01/33] Staging: autofs: Makefile: replace the use of <module>-objs with <module>-y Tracey Dent
                   ` (16 preceding siblings ...)
  2010-10-08  0:01 ` [PATCH 18/33] Staging: rt2860: " Tracey Dent
@ 2010-10-08  0:01 ` Tracey Dent
  2010-10-08  0:01 ` [PATCH 20/33] Staging: rtl8187se: " Tracey Dent
                   ` (13 subsequent siblings)
  31 siblings, 0 replies; 36+ messages in thread
From: Tracey Dent @ 2010-10-08  0:01 UTC (permalink / raw)
  To: greg; +Cc: linux-kernel, kernel-janitors, sam, linux-kbuild, Tracey Dent

Changed <module>-objs to <module>-y in Makefile.

Signed-off-by: Tracey Dent <tdent48227@gmail.com>
---
 drivers/staging/rt2870/Makefile |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/staging/rt2870/Makefile b/drivers/staging/rt2870/Makefile
index 7b29493..b499910 100644
--- a/drivers/staging/rt2870/Makefile
+++ b/drivers/staging/rt2870/Makefile
@@ -7,7 +7,7 @@ ccflags-y += -DRTMP_MAC_USB -DRTMP_USB_SUPPORT -DRT2870 -DRTMP_TIMER_TASK_SUPPOR
 ccflags-y += -DRTMP_RF_RW_SUPPORT -DRTMP_EFUSE_SUPPORT -DRT30xx -DRT3070
 ccflags-y += -DDBG
 
-rt2870sta-objs :=		\
+rt2870sta-y :=		\
 	common/crypt_md5.o	\
 	common/crypt_sha2.o	\
 	common/crypt_hmac.o	\
-- 
1.7.3.1.50.g1e633


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

* [PATCH 20/33] Staging: rtl8187se: Makefile: replace the use of <module>-objs with <module>-y
  2010-10-08  0:01 [PATCH 01/33] Staging: autofs: Makefile: replace the use of <module>-objs with <module>-y Tracey Dent
                   ` (17 preceding siblings ...)
  2010-10-08  0:01 ` [PATCH 19/33] Staging: rt2870: " Tracey Dent
@ 2010-10-08  0:01 ` Tracey Dent
  2010-10-08  0:01 ` [PATCH 21/33] Staging: rtl8192u: " Tracey Dent
                   ` (12 subsequent siblings)
  31 siblings, 0 replies; 36+ messages in thread
From: Tracey Dent @ 2010-10-08  0:01 UTC (permalink / raw)
  To: greg; +Cc: linux-kernel, kernel-janitors, sam, linux-kbuild, Tracey Dent

Changed <module>-objs to <module>-y in Makefile.

Signed-off-by: Tracey Dent <tdent48227@gmail.com>
---
 drivers/staging/rtl8187se/Makefile |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/staging/rtl8187se/Makefile b/drivers/staging/rtl8187se/Makefile
index adc3849..11a9226 100644
--- a/drivers/staging/rtl8187se/Makefile
+++ b/drivers/staging/rtl8187se/Makefile
@@ -16,7 +16,7 @@ ccflags-y += -DENABLE_LPS
 
 #ccflags-y := -mhard-float -DCONFIG_FORCE_HARD_FLOAT=y
 
-r8187se-objs :=			\
+r8187se-y :=			\
 		r8180_core.o		\
 		r8180_wx.o		\
 		r8180_rtl8225z2.o	\
-- 
1.7.3.1.50.g1e633


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

* [PATCH 21/33] Staging: rtl8192u: Makefile: replace the use of <module>-objs with <module>-y
  2010-10-08  0:01 [PATCH 01/33] Staging: autofs: Makefile: replace the use of <module>-objs with <module>-y Tracey Dent
                   ` (18 preceding siblings ...)
  2010-10-08  0:01 ` [PATCH 20/33] Staging: rtl8187se: " Tracey Dent
@ 2010-10-08  0:01 ` Tracey Dent
  2010-10-08  0:01 ` [PATCH 22/33] Staging: rtl8712: " Tracey Dent
                   ` (11 subsequent siblings)
  31 siblings, 0 replies; 36+ messages in thread
From: Tracey Dent @ 2010-10-08  0:01 UTC (permalink / raw)
  To: greg; +Cc: linux-kernel, kernel-janitors, sam, linux-kbuild, Tracey Dent

Changed <module>-objs to <module>-y in Makefile.

Signed-off-by: Tracey Dent <tdent48227@gmail.com>
---
 drivers/staging/rtl8192u/Makefile |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/staging/rtl8192u/Makefile b/drivers/staging/rtl8192u/Makefile
index cba4344..206d924 100644
--- a/drivers/staging/rtl8192u/Makefile
+++ b/drivers/staging/rtl8192u/Makefile
@@ -12,7 +12,7 @@ ccflags-y += -DUSE_ONE_PIPE
 ccflags-y += -DENABLE_DOT11D
 ccflags-y += -Idrivers/staging/rtl8192u/ieee80211
 
-r8192u_usb-objs := r8192U_core.o r8180_93cx6.o r8192U_wx.o		\
+r8192u_usb-y := r8192U_core.o r8180_93cx6.o r8192U_wx.o		\
 		  r8190_rtl8256.o r819xU_phy.o r819xU_firmware.o	\
 		  r819xU_cmdpkt.o r8192U_dm.o r819xU_firmware_img.o	\
 		  ieee80211/ieee80211_crypt.o				\
-- 
1.7.3.1.50.g1e633


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

* [PATCH 22/33] Staging: rtl8712: Makefile: replace the use of <module>-objs with <module>-y
  2010-10-08  0:01 [PATCH 01/33] Staging: autofs: Makefile: replace the use of <module>-objs with <module>-y Tracey Dent
                   ` (19 preceding siblings ...)
  2010-10-08  0:01 ` [PATCH 21/33] Staging: rtl8192u: " Tracey Dent
@ 2010-10-08  0:01 ` Tracey Dent
  2010-10-08  0:01 ` [PATCH 23/33] Staging: sbe-2t3e3: " Tracey Dent
                   ` (10 subsequent siblings)
  31 siblings, 0 replies; 36+ messages in thread
From: Tracey Dent @ 2010-10-08  0:01 UTC (permalink / raw)
  To: greg; +Cc: linux-kernel, kernel-janitors, sam, linux-kbuild, Tracey Dent

Changed <module>-objs to <module>-y in Makefile.

Signed-off-by: Tracey Dent <tdent48227@gmail.com>
---
 drivers/staging/rtl8712/Makefile |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/staging/rtl8712/Makefile b/drivers/staging/rtl8712/Makefile
index 1ccd251..6f8500c 100644
--- a/drivers/staging/rtl8712/Makefile
+++ b/drivers/staging/rtl8712/Makefile
@@ -1,4 +1,4 @@
-r8712u-objs :=				\
+r8712u-y :=				\
 		rtl871x_cmd.o		\
 		rtl8712_cmd.o		\
 		rtl871x_security.o	\
-- 
1.7.3.1.50.g1e633


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

* [PATCH 23/33] Staging: sbe-2t3e3: Makefile: replace the use of <module>-objs with <module>-y
  2010-10-08  0:01 [PATCH 01/33] Staging: autofs: Makefile: replace the use of <module>-objs with <module>-y Tracey Dent
                   ` (20 preceding siblings ...)
  2010-10-08  0:01 ` [PATCH 22/33] Staging: rtl8712: " Tracey Dent
@ 2010-10-08  0:01 ` Tracey Dent
  2010-10-08  0:01 ` [PATCH 24/33] Staging: smbfs: Makefile: Makefile clean up Tracey Dent
                   ` (9 subsequent siblings)
  31 siblings, 0 replies; 36+ messages in thread
From: Tracey Dent @ 2010-10-08  0:01 UTC (permalink / raw)
  To: greg; +Cc: linux-kernel, kernel-janitors, sam, linux-kbuild, Tracey Dent

Changed <module>-objs to <module>-y in Makefile.

Signed-off-by: Tracey Dent <tdent48227@gmail.com>
---
 drivers/staging/sbe-2t3e3/Makefile |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/staging/sbe-2t3e3/Makefile b/drivers/staging/sbe-2t3e3/Makefile
index 2c7b097..cce2a7a 100644
--- a/drivers/staging/sbe-2t3e3/Makefile
+++ b/drivers/staging/sbe-2t3e3/Makefile
@@ -1,4 +1,4 @@
 obj-$(CONFIG_SBE_2T3E3) += sbe-2t3e3.o
 
-sbe-2t3e3-objs := module.o netdev.o maps.o	\
+sbe-2t3e3-y := module.o netdev.o maps.o	\
 	main.o cpld.o intr.o ctrl.o io.o dc.o exar7250.o exar7300.o
-- 
1.7.3.1.50.g1e633


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

* [PATCH 24/33] Staging: smbfs: Makefile: Makefile clean up
  2010-10-08  0:01 [PATCH 01/33] Staging: autofs: Makefile: replace the use of <module>-objs with <module>-y Tracey Dent
                   ` (21 preceding siblings ...)
  2010-10-08  0:01 ` [PATCH 23/33] Staging: sbe-2t3e3: " Tracey Dent
@ 2010-10-08  0:01 ` Tracey Dent
  2010-10-08  0:01 ` [PATCH 25/33] Staging: solo6x10: Makefile: replace the use of <module>-objs with <module>-y Tracey Dent
                   ` (8 subsequent siblings)
  31 siblings, 0 replies; 36+ messages in thread
From: Tracey Dent @ 2010-10-08  0:01 UTC (permalink / raw)
  To: greg; +Cc: linux-kernel, kernel-janitors, sam, linux-kbuild, Tracey Dent

Changed <module>-objs to <module>-y in Makefile.
Also Replace EXTRA_CFLAGS with ccflags-y.

Signed-off-by: Tracey Dent <tdent48227@gmail.com>
---
 drivers/staging/smbfs/Makefile |   12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/drivers/staging/smbfs/Makefile b/drivers/staging/smbfs/Makefile
index 4faf8c4..d2a92c5 100644
--- a/drivers/staging/smbfs/Makefile
+++ b/drivers/staging/smbfs/Makefile
@@ -4,15 +4,15 @@
 
 obj-$(CONFIG_SMB_FS) += smbfs.o
 
-smbfs-objs := proc.o dir.o cache.o sock.o inode.o file.o ioctl.o getopt.o \
+smbfs-y := proc.o dir.o cache.o sock.o inode.o file.o ioctl.o getopt.o \
 		symlink.o smbiod.o request.o
 
 # If you want debugging output, you may add these flags to the EXTRA_CFLAGS
 # SMBFS_PARANOIA should normally be enabled.
 
-EXTRA_CFLAGS += -DSMBFS_PARANOIA
-#EXTRA_CFLAGS += -DSMBFS_DEBUG
-#EXTRA_CFLAGS += -DSMBFS_DEBUG_VERBOSE
-#EXTRA_CFLAGS += -DDEBUG_SMB_TIMESTAMP
-#EXTRA_CFLAGS += -Werror
+ccflags-y := -DSMBFS_PARANOIA
+#ccflags-y += -DSMBFS_DEBUG
+#ccflags-y += -DSMBFS_DEBUG_VERBOSE
+#ccflags-y += -DDEBUG_SMB_TIMESTAMP
+#ccflags-y += -Werror
 
-- 
1.7.3.1.50.g1e633


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

* [PATCH 25/33] Staging: solo6x10: Makefile: replace the use of <module>-objs with <module>-y
  2010-10-08  0:01 [PATCH 01/33] Staging: autofs: Makefile: replace the use of <module>-objs with <module>-y Tracey Dent
                   ` (22 preceding siblings ...)
  2010-10-08  0:01 ` [PATCH 24/33] Staging: smbfs: Makefile: Makefile clean up Tracey Dent
@ 2010-10-08  0:01 ` Tracey Dent
  2010-10-08  0:01 ` [PATCH 26/33] Staging: tidspbridge: " Tracey Dent
                   ` (7 subsequent siblings)
  31 siblings, 0 replies; 36+ messages in thread
From: Tracey Dent @ 2010-10-08  0:01 UTC (permalink / raw)
  To: greg; +Cc: linux-kernel, kernel-janitors, sam, linux-kbuild, Tracey Dent

Changed <module>-objs to <module>-y in Makefile.

Signed-off-by: Tracey Dent <tdent48227@gmail.com>
---
 drivers/staging/solo6x10/Makefile |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/staging/solo6x10/Makefile b/drivers/staging/solo6x10/Makefile
index 7e70044..1616b55 100644
--- a/drivers/staging/solo6x10/Makefile
+++ b/drivers/staging/solo6x10/Makefile
@@ -1,4 +1,4 @@
-solo6x10-objs	:= solo6010-core.o solo6010-i2c.o solo6010-p2m.o \
+solo6x10-y	:= solo6010-core.o solo6010-i2c.o solo6010-p2m.o \
 		   solo6010-v4l2.o solo6010-tw28.o solo6010-gpio.o \
 		   solo6010-disp.o solo6010-enc.o solo6010-v4l2-enc.o \
 		   solo6010-g723.o
-- 
1.7.3.1.50.g1e633


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

* [PATCH 26/33] Staging: tidspbridge: Makefile: replace the use of <module>-objs with <module>-y
  2010-10-08  0:01 [PATCH 01/33] Staging: autofs: Makefile: replace the use of <module>-objs with <module>-y Tracey Dent
                   ` (23 preceding siblings ...)
  2010-10-08  0:01 ` [PATCH 25/33] Staging: solo6x10: Makefile: replace the use of <module>-objs with <module>-y Tracey Dent
@ 2010-10-08  0:01 ` Tracey Dent
  2010-10-08  0:01 ` [PATCH 27/33] Staging: ti-st: " Tracey Dent
                   ` (6 subsequent siblings)
  31 siblings, 0 replies; 36+ messages in thread
From: Tracey Dent @ 2010-10-08  0:01 UTC (permalink / raw)
  To: greg; +Cc: linux-kernel, kernel-janitors, sam, linux-kbuild, Tracey Dent

Changed <module>-objs to <module>-y in Makefile.

Signed-off-by: Tracey Dent <tdent48227@gmail.com>
---
 drivers/staging/tidspbridge/Makefile |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/staging/tidspbridge/Makefile b/drivers/staging/tidspbridge/Makefile
index 7c122fa..50decc2 100644
--- a/drivers/staging/tidspbridge/Makefile
+++ b/drivers/staging/tidspbridge/Makefile
@@ -12,7 +12,7 @@ librmgr = rmgr/dbdcd.o rmgr/disp.o rmgr/drv.o rmgr/mgr.o rmgr/node.o \
 libdload = dynload/cload.o dynload/getsection.o dynload/reloc.o \
 		 dynload/tramp.o
 
-bridgedriver-objs = $(libgen) $(libservices) $(libcore) $(libpmgr) $(librmgr) \
+bridgedriver-y := $(libgen) $(libservices) $(libcore) $(libpmgr) $(librmgr) \
 			$(libdload)
 
 #Machine dependent
-- 
1.7.3.1.50.g1e633


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

* [PATCH 27/33] Staging: ti-st: Makefile: replace the use of <module>-objs with <module>-y
  2010-10-08  0:01 [PATCH 01/33] Staging: autofs: Makefile: replace the use of <module>-objs with <module>-y Tracey Dent
                   ` (24 preceding siblings ...)
  2010-10-08  0:01 ` [PATCH 26/33] Staging: tidspbridge: " Tracey Dent
@ 2010-10-08  0:01 ` Tracey Dent
  2010-10-08 14:24   ` Greg KH
  2010-10-08  0:01 ` [PATCH 28/33] Staging: tm6000: " Tracey Dent
                   ` (5 subsequent siblings)
  31 siblings, 1 reply; 36+ messages in thread
From: Tracey Dent @ 2010-10-08  0:01 UTC (permalink / raw)
  To: greg; +Cc: linux-kernel, kernel-janitors, sam, linux-kbuild, Tracey Dent

Changed <module>-objs to <module>-y in Makefile.

Signed-off-by: Tracey Dent <tdent48227@gmail.com>
---
 drivers/staging/ti-st/Makefile |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/staging/ti-st/Makefile b/drivers/staging/ti-st/Makefile
index 0167d1d..4b6ca18 100644
--- a/drivers/staging/ti-st/Makefile
+++ b/drivers/staging/ti-st/Makefile
@@ -3,5 +3,5 @@
 # and its protocol drivers (BT, FM, GPS)
 #
 obj-$(CONFIG_TI_ST) 		+= st_drv.o
-st_drv-objs			:= st_core.o st_kim.o st_ll.o
+st_drv-y			:= st_core.o st_kim.o st_ll.o
 obj-$(CONFIG_ST_BT) 		+= bt_drv.o
-- 
1.7.3.1.50.g1e633


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

* [PATCH 28/33] Staging: tm6000: Makefile: replace the use of <module>-objs with <module>-y
  2010-10-08  0:01 [PATCH 01/33] Staging: autofs: Makefile: replace the use of <module>-objs with <module>-y Tracey Dent
                   ` (25 preceding siblings ...)
  2010-10-08  0:01 ` [PATCH 27/33] Staging: ti-st: " Tracey Dent
@ 2010-10-08  0:01 ` Tracey Dent
  2010-10-08  0:01 ` [PATCH 29/33] Staging: usbip: " Tracey Dent
                   ` (4 subsequent siblings)
  31 siblings, 0 replies; 36+ messages in thread
From: Tracey Dent @ 2010-10-08  0:01 UTC (permalink / raw)
  To: greg; +Cc: linux-kernel, kernel-janitors, sam, linux-kbuild, Tracey Dent

Changed <module>-objs to <module>-y in Makefile.

Signed-off-by: Tracey Dent <tdent48227@gmail.com>
---
 drivers/staging/tm6000/Makefile |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/staging/tm6000/Makefile b/drivers/staging/tm6000/Makefile
index d8ccdaa..395515b 100644
--- a/drivers/staging/tm6000/Makefile
+++ b/drivers/staging/tm6000/Makefile
@@ -1,4 +1,4 @@
-tm6000-objs := tm6000-cards.o \
+tm6000-y := tm6000-cards.o \
 		   tm6000-core.o  \
 		   tm6000-i2c.o   \
 		   tm6000-video.o \
-- 
1.7.3.1.50.g1e633


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

* [PATCH 29/33] Staging: usbip: Makefile: replace the use of <module>-objs with <module>-y
  2010-10-08  0:01 [PATCH 01/33] Staging: autofs: Makefile: replace the use of <module>-objs with <module>-y Tracey Dent
                   ` (26 preceding siblings ...)
  2010-10-08  0:01 ` [PATCH 28/33] Staging: tm6000: " Tracey Dent
@ 2010-10-08  0:01 ` Tracey Dent
  2010-10-08  0:01 ` [PATCH 30/33] Staging: winbond: " Tracey Dent
                   ` (3 subsequent siblings)
  31 siblings, 0 replies; 36+ messages in thread
From: Tracey Dent @ 2010-10-08  0:01 UTC (permalink / raw)
  To: greg; +Cc: linux-kernel, kernel-janitors, sam, linux-kbuild, Tracey Dent

Changed <module>-objs to <module>-y in Makefile.

Signed-off-by: Tracey Dent <tdent48227@gmail.com>
---
 drivers/staging/usbip/Makefile |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/staging/usbip/Makefile b/drivers/staging/usbip/Makefile
index 10307f8..279f3cc 100644
--- a/drivers/staging/usbip/Makefile
+++ b/drivers/staging/usbip/Makefile
@@ -1,11 +1,11 @@
 obj-$(CONFIG_USB_IP_COMMON) += usbip_common_mod.o
-usbip_common_mod-objs := usbip_common.o usbip_event.o
+usbip_common_mod-y := usbip_common.o usbip_event.o
 
 obj-$(CONFIG_USB_IP_VHCI_HCD) += vhci-hcd.o
-vhci-hcd-objs := vhci_sysfs.o vhci_tx.o vhci_rx.o vhci_hcd.o
+vhci-hcd-y := vhci_sysfs.o vhci_tx.o vhci_rx.o vhci_hcd.o
 
 obj-$(CONFIG_USB_IP_HOST) += usbip.o
-usbip-objs := stub_dev.o stub_main.o stub_rx.o stub_tx.o
+usbip-y := stub_dev.o stub_main.o stub_rx.o stub_tx.o
 
 ccflags-$(CONFIG_USB_IP_DEBUG_ENABLE) := -DDEBUG
 
-- 
1.7.3.1.50.g1e633


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

* [PATCH 30/33] Staging: winbond: Makefile: replace the use of <module>-objs with <module>-y
  2010-10-08  0:01 [PATCH 01/33] Staging: autofs: Makefile: replace the use of <module>-objs with <module>-y Tracey Dent
                   ` (27 preceding siblings ...)
  2010-10-08  0:01 ` [PATCH 29/33] Staging: usbip: " Tracey Dent
@ 2010-10-08  0:01 ` Tracey Dent
  2010-10-08  0:01 ` [PATCH 31/33] Staging: wlan-ng: " Tracey Dent
                   ` (2 subsequent siblings)
  31 siblings, 0 replies; 36+ messages in thread
From: Tracey Dent @ 2010-10-08  0:01 UTC (permalink / raw)
  To: greg; +Cc: linux-kernel, kernel-janitors, sam, linux-kbuild, Tracey Dent

Changed <module>-objs to <module>-y in Makefile.

Signed-off-by: Tracey Dent <tdent48227@gmail.com>
---
 drivers/staging/winbond/Makefile |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/staging/winbond/Makefile b/drivers/staging/winbond/Makefile
index fb2b7d4..79fa227 100644
--- a/drivers/staging/winbond/Makefile
+++ b/drivers/staging/winbond/Makefile
@@ -1,4 +1,4 @@
-w35und-objs :=			\
+w35und-y :=			\
 	mds.o			\
 	mlmetxrx.o		\
 	mto.o			\
-- 
1.7.3.1.50.g1e633


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

* [PATCH 31/33] Staging: wlan-ng: Makefile: replace the use of <module>-objs with <module>-y
  2010-10-08  0:01 [PATCH 01/33] Staging: autofs: Makefile: replace the use of <module>-objs with <module>-y Tracey Dent
                   ` (28 preceding siblings ...)
  2010-10-08  0:01 ` [PATCH 30/33] Staging: winbond: " Tracey Dent
@ 2010-10-08  0:01 ` Tracey Dent
  2010-10-08  0:01 ` [PATCH 32/33] Staging: xgifb: " Tracey Dent
  2010-10-08  0:01 ` [PATCH 33/33] Staging: zram: " Tracey Dent
  31 siblings, 0 replies; 36+ messages in thread
From: Tracey Dent @ 2010-10-08  0:01 UTC (permalink / raw)
  To: greg; +Cc: linux-kernel, kernel-janitors, sam, linux-kbuild, Tracey Dent

Changed <module>-objs to <module>-y in Makefile.

Signed-off-by: Tracey Dent <tdent48227@gmail.com>
---
 drivers/staging/wlan-ng/Makefile |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/staging/wlan-ng/Makefile b/drivers/staging/wlan-ng/Makefile
index db5d597..32b69f2 100644
--- a/drivers/staging/wlan-ng/Makefile
+++ b/drivers/staging/wlan-ng/Makefile
@@ -1,6 +1,6 @@
 obj-$(CONFIG_PRISM2_USB) += prism2_usb.o
 
-prism2_usb-objs := prism2usb.o \
+prism2_usb-y := prism2usb.o \
 		p80211conv.o \
 		p80211req.o \
 		p80211wep.o \
-- 
1.7.3.1.50.g1e633


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

* [PATCH 32/33] Staging: xgifb: Makefile: replace the use of <module>-objs with <module>-y
  2010-10-08  0:01 [PATCH 01/33] Staging: autofs: Makefile: replace the use of <module>-objs with <module>-y Tracey Dent
                   ` (29 preceding siblings ...)
  2010-10-08  0:01 ` [PATCH 31/33] Staging: wlan-ng: " Tracey Dent
@ 2010-10-08  0:01 ` Tracey Dent
  2010-10-08  0:01 ` [PATCH 33/33] Staging: zram: " Tracey Dent
  31 siblings, 0 replies; 36+ messages in thread
From: Tracey Dent @ 2010-10-08  0:01 UTC (permalink / raw)
  To: greg; +Cc: linux-kernel, kernel-janitors, sam, linux-kbuild, Tracey Dent

Changed <module>-objs to <module>-y in Makefile.

Signed-off-by: Tracey Dent <tdent48227@gmail.com>
---
 drivers/staging/xgifb/Makefile |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/staging/xgifb/Makefile b/drivers/staging/xgifb/Makefile
index 2a31770..f2ca6b1 100644
--- a/drivers/staging/xgifb/Makefile
+++ b/drivers/staging/xgifb/Makefile
@@ -1,4 +1,4 @@
 obj-$(CONFIG_FB_XGI)  += xgifb.o
 
-xgifb-objs := XGI_main_26.o XGI_accel.o vb_init.o vb_setmode.o vb_util.o vb_ext.o
+xgifb-y := XGI_main_26.o XGI_accel.o vb_init.o vb_setmode.o vb_util.o vb_ext.o
 
-- 
1.7.3.1.50.g1e633


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

* [PATCH 33/33] Staging: zram: Makefile: replace the use of <module>-objs with <module>-y
  2010-10-08  0:01 [PATCH 01/33] Staging: autofs: Makefile: replace the use of <module>-objs with <module>-y Tracey Dent
                   ` (30 preceding siblings ...)
  2010-10-08  0:01 ` [PATCH 32/33] Staging: xgifb: " Tracey Dent
@ 2010-10-08  0:01 ` Tracey Dent
  31 siblings, 0 replies; 36+ messages in thread
From: Tracey Dent @ 2010-10-08  0:01 UTC (permalink / raw)
  To: greg; +Cc: linux-kernel, kernel-janitors, sam, linux-kbuild, Tracey Dent

Changed <module>-objs to <module>-y in Makefile.

Signed-off-by: Tracey Dent <tdent48227@gmail.com>
---
 drivers/staging/zram/Makefile |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/staging/zram/Makefile b/drivers/staging/zram/Makefile
index c01160a..b1709c5 100644
--- a/drivers/staging/zram/Makefile
+++ b/drivers/staging/zram/Makefile
@@ -1,3 +1,3 @@
-zram-objs	:=	zram_drv.o zram_sysfs.o xvmalloc.o
+zram-y	:=	zram_drv.o zram_sysfs.o xvmalloc.o
 
 obj-$(CONFIG_ZRAM)	+=	zram.o
-- 
1.7.3.1.50.g1e633


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

* Re: [PATCH 27/33] Staging: ti-st: Makefile: replace the use of <module>-objs with <module>-y
  2010-10-08  0:01 ` [PATCH 27/33] Staging: ti-st: " Tracey Dent
@ 2010-10-08 14:24   ` Greg KH
  2010-10-08 15:13     ` T Dent
  0 siblings, 1 reply; 36+ messages in thread
From: Greg KH @ 2010-10-08 14:24 UTC (permalink / raw)
  To: Tracey Dent; +Cc: linux-kernel, kernel-janitors, sam, linux-kbuild

On Thu, Oct 07, 2010 at 08:01:47PM -0400, Tracey Dent wrote:
> Changed <module>-objs to <module>-y in Makefile.
> 
> Signed-off-by: Tracey Dent <tdent48227@gmail.com>
> ---
>  drivers/staging/ti-st/Makefile |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
> 
> diff --git a/drivers/staging/ti-st/Makefile b/drivers/staging/ti-st/Makefile
> index 0167d1d..4b6ca18 100644
> --- a/drivers/staging/ti-st/Makefile
> +++ b/drivers/staging/ti-st/Makefile
> @@ -3,5 +3,5 @@
>  # and its protocol drivers (BT, FM, GPS)
>  #
>  obj-$(CONFIG_TI_ST) 		+= st_drv.o
> -st_drv-objs			:= st_core.o st_kim.o st_ll.o
> +st_drv-y			:= st_core.o st_kim.o st_ll.o
>  obj-$(CONFIG_ST_BT) 		+= bt_drv.o

For some odd reason, this patch didn't apply to the tree, but all of the
32 other patches in the series did.  Care to redo this one and resend it
to me?

thanks,

greg k-h

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

* Re: [PATCH 27/33] Staging: ti-st: Makefile: replace the use of <module>-objs with <module>-y
  2010-10-08 14:24   ` Greg KH
@ 2010-10-08 15:13     ` T Dent
  2010-10-08 21:41       ` T Dent
  0 siblings, 1 reply; 36+ messages in thread
From: T Dent @ 2010-10-08 15:13 UTC (permalink / raw)
  To: Greg KH; +Cc: linux-kernel, kernel-janitors, sam, linux-kbuild

On 10/8/10, Greg KH <greg@kroah.com> wrote:
> On Thu, Oct 07, 2010 at 08:01:47PM -0400, Tracey Dent wrote:
>> Changed <module>-objs to <module>-y in Makefile.
>>
>> Signed-off-by: Tracey Dent <tdent48227@gmail.com>
>> ---
>>  drivers/staging/ti-st/Makefile |    2 +-
>>  1 files changed, 1 insertions(+), 1 deletions(-)
>>
>> diff --git a/drivers/staging/ti-st/Makefile
>> b/drivers/staging/ti-st/Makefile
>> index 0167d1d..4b6ca18 100644
>> --- a/drivers/staging/ti-st/Makefile
>> +++ b/drivers/staging/ti-st/Makefile
>> @@ -3,5 +3,5 @@
>>  # and its protocol drivers (BT, FM, GPS)
>>  #
>>  obj-$(CONFIG_TI_ST) 		+= st_drv.o
>> -st_drv-objs			:= st_core.o st_kim.o st_ll.o
>> +st_drv-y			:= st_core.o st_kim.o st_ll.o
>>  obj-$(CONFIG_ST_BT) 		+= bt_drv.o
>
> For some odd reason, this patch didn't apply to the tree, but all of the
> 32 other patches in the series did.  Care to redo this one and resend it
> to me?
>

Strange but okay.

> thanks,
>
> greg k-h
>
Thanks,

Tracey D

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

* Re: [PATCH 27/33] Staging: ti-st: Makefile: replace the use of <module>-objs with <module>-y
  2010-10-08 15:13     ` T Dent
@ 2010-10-08 21:41       ` T Dent
  0 siblings, 0 replies; 36+ messages in thread
From: T Dent @ 2010-10-08 21:41 UTC (permalink / raw)
  To: Greg KH; +Cc: linux-kernel, kernel-janitors, sam, linux-kbuild

On 10/8/10, T Dent <tdent48227@gmail.com> wrote:
> On 10/8/10, Greg KH <greg@kroah.com> wrote:
>> On Thu, Oct 07, 2010 at 08:01:47PM -0400, Tracey Dent wrote:
>>> Changed <module>-objs to <module>-y in Makefile.
>>>
>>> Signed-off-by: Tracey Dent <tdent48227@gmail.com>
>>> ---
>>>  drivers/staging/ti-st/Makefile |    2 +-
>>>  1 files changed, 1 insertions(+), 1 deletions(-)
>>>
>>> diff --git a/drivers/staging/ti-st/Makefile
>>> b/drivers/staging/ti-st/Makefile
>>> index 0167d1d..4b6ca18 100644
>>> --- a/drivers/staging/ti-st/Makefile
>>> +++ b/drivers/staging/ti-st/Makefile
>>> @@ -3,5 +3,5 @@
>>>  # and its protocol drivers (BT, FM, GPS)
>>>  #
>>>  obj-$(CONFIG_TI_ST) 		+= st_drv.o
>>> -st_drv-objs			:= st_core.o st_kim.o st_ll.o
>>> +st_drv-y			:= st_core.o st_kim.o st_ll.o
>>>  obj-$(CONFIG_ST_BT) 		+= bt_drv.o
>>
>> For some odd reason, this patch didn't apply to the tree, but all of the
>> 32 other patches in the series did.  Care to redo this one and resend it
>> to me?
>>

The file changed, that why it cant be applied.

>
> Strange but okay.
>
>> thanks,
>>
>> greg k-h
>>
> Thanks,
>
> Tracey D
>

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

end of thread, other threads:[~2010-10-08 21:41 UTC | newest]

Thread overview: 36+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-10-08  0:01 [PATCH 01/33] Staging: autofs: Makefile: replace the use of <module>-objs with <module>-y Tracey Dent
2010-10-08  0:01 ` [PATCH 02/33] Staging: batman-adv: " Tracey Dent
2010-10-08  0:01 ` [PATCH 03/33] Staging: bcm: " Tracey Dent
2010-10-08  0:01 ` [PATCH 04/33] Staging: comedi: " Tracey Dent
2010-10-08  0:01 ` [PATCH 05/33] Staging: crystalhd: " Tracey Dent
2010-10-08  0:01 ` [PATCH 06/33] Staging: cx25821: " Tracey Dent
2010-10-08  0:01 ` [PATCH 07/33] Staging: cxt1e1: " Tracey Dent
2010-10-08  0:01 ` [PATCH 08/33] Staging: easycap: " Tracey Dent
2010-10-08  0:01 ` [PATCH 09/33] Staging: go7007: Makefile: makefile cleanup Tracey Dent
2010-10-08  0:01 ` [PATCH 10/33] Staging: et131x: Makefile: replace the use of <module>-objs with <module>-y Tracey Dent
2010-10-08  0:01 ` [PATCH 11/33] Staging: ft1000:ft1000-pcmia: " Tracey Dent
2010-10-08  0:01 ` [PATCH 12/33] Staging: ft1000: ft1000-usb: " Tracey Dent
2010-10-08  0:01 ` [PATCH 13/33] Staging: hv: " Tracey Dent
2010-10-08  0:01 ` [PATCH 14/33] Staging: intel_sst: " Tracey Dent
2010-10-08  0:01 ` [PATCH 15/33] Staging: keucr: Makefile: Makefile clean up Tracey Dent
2010-10-08  0:01 ` [PATCH 16/33] Staging: line6: Makefile: replace the use of <module>-objs with <module>-y Tracey Dent
2010-10-08  0:01 ` [PATCH 17/33] Staging: octeon: " Tracey Dent
2010-10-08  0:01 ` [PATCH 18/33] Staging: rt2860: " Tracey Dent
2010-10-08  0:01 ` [PATCH 19/33] Staging: rt2870: " Tracey Dent
2010-10-08  0:01 ` [PATCH 20/33] Staging: rtl8187se: " Tracey Dent
2010-10-08  0:01 ` [PATCH 21/33] Staging: rtl8192u: " Tracey Dent
2010-10-08  0:01 ` [PATCH 22/33] Staging: rtl8712: " Tracey Dent
2010-10-08  0:01 ` [PATCH 23/33] Staging: sbe-2t3e3: " Tracey Dent
2010-10-08  0:01 ` [PATCH 24/33] Staging: smbfs: Makefile: Makefile clean up Tracey Dent
2010-10-08  0:01 ` [PATCH 25/33] Staging: solo6x10: Makefile: replace the use of <module>-objs with <module>-y Tracey Dent
2010-10-08  0:01 ` [PATCH 26/33] Staging: tidspbridge: " Tracey Dent
2010-10-08  0:01 ` [PATCH 27/33] Staging: ti-st: " Tracey Dent
2010-10-08 14:24   ` Greg KH
2010-10-08 15:13     ` T Dent
2010-10-08 21:41       ` T Dent
2010-10-08  0:01 ` [PATCH 28/33] Staging: tm6000: " Tracey Dent
2010-10-08  0:01 ` [PATCH 29/33] Staging: usbip: " Tracey Dent
2010-10-08  0:01 ` [PATCH 30/33] Staging: winbond: " Tracey Dent
2010-10-08  0:01 ` [PATCH 31/33] Staging: wlan-ng: " Tracey Dent
2010-10-08  0:01 ` [PATCH 32/33] Staging: xgifb: " Tracey Dent
2010-10-08  0:01 ` [PATCH 33/33] Staging: zram: " Tracey Dent

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