[PATCH 052/342] Staging: comedi: remove C99 comments in ni_at_a2150.c

Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
From: Greg Kroah-Hartman
Date: Friday, June 19, 2009 - 11:04 am

From: Bill Pemberton <wfp5p@virginia.edu>

Signed-off-by: Bill Pemberton <wfp5p@virginia.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
---
 drivers/staging/comedi/drivers/ni_at_a2150.c |  182 +++++++++++++-------------
 1 files changed, 91 insertions(+), 91 deletions(-)

diff --git a/drivers/staging/comedi/drivers/ni_at_a2150.c b/drivers/staging/comedi/drivers/ni_at_a2150.c
index 5d45bf2..f956ee1 100644
--- a/drivers/staging/comedi/drivers/ni_at_a2150.c
+++ b/drivers/staging/comedi/drivers/ni_at_a2150.c
@@ -73,10 +73,10 @@ TRIG_WAKE_EOS
 #include "comedi_fc.h"
 
 #define A2150_SIZE           28
-#define A2150_DMA_BUFFER_SIZE	0xff00	// size in bytes of dma buffer
+#define A2150_DMA_BUFFER_SIZE	0xff00	/*  size in bytes of dma buffer */
 
-//#define A2150_DEBUG   // enable debugging code
-#undef A2150_DEBUG		// disable debugging code
+/* #define A2150_DEBUG     enable debugging code */
+#undef A2150_DEBUG		/*  disable debugging code */
 
 /* Registers and bits */
 #define CONFIG_REG		0x0
@@ -85,48 +85,48 @@ TRIG_WAKE_EOS
 #define   CLOCK_SELECT_BITS(x)		(((x) & 0x3) << 3)
 #define   CLOCK_DIVISOR_BITS(x)		(((x) & 0x3) << 5)
 #define   CLOCK_MASK		(0xf << 3)
-#define   ENABLE0_BIT		0x80	// enable (don't internally ground) channels 0 and 1
-#define   ENABLE1_BIT		0x100	// enable (don't internally ground) channels 2 and 3
-#define   AC0_BIT		0x200	// ac couple channels 0,1
-#define   AC1_BIT		0x400	// ac couple channels 2,3
-#define   APD_BIT		0x800	// analog power down
-#define   DPD_BIT		0x1000	// digital power down
-#define TRIGGER_REG		0x2	// trigger config register
+#define   ENABLE0_BIT		0x80	/*  enable (don't internally ground) channels 0 and 1 */
+#define   ENABLE1_BIT		0x100	/*  enable (don't internally ground) channels 2 and 3 */
+#define   AC0_BIT		0x200	/*  ac couple channels 0,1 */
+#define   AC1_BIT		0x400	/*  ac couple channels 2,3 */
+#define   APD_BIT		0x800	/*  analog power down */
+#define   DPD_BIT		0x1000	/*  digital power down */
+#define TRIGGER_REG		0x2	/*  trigger config register */
 #define   POST_TRIGGER_BITS		0x2
 #define   DELAY_TRIGGER_BITS		0x3
-#define   HW_TRIG_EN		0x10	// enable hardware trigger
-#define FIFO_START_REG		0x6	// software start aquistion trigger
-#define FIFO_RESET_REG		0x8	// clears fifo + fifo flags
-#define FIFO_DATA_REG		0xa	// read data
-#define DMA_TC_CLEAR_REG		0xe	// clear dma terminal count interrupt
-#define STATUS_REG		0x12	// read only
-#define   FNE_BIT		0x1	// fifo not empty
-#define   OVFL_BIT		0x8	// fifo overflow
-#define   EDAQ_BIT		0x10	// end of aquisition interrupt
-#define   DCAL_BIT		0x20	// offset calibration in progress
-#define   INTR_BIT		0x40	// interrupt has occured
-#define   DMA_TC_BIT		0x80	// dma terminal count interrupt has occured
+#define   HW_TRIG_EN		0x10	/*  enable hardware trigger */
+#define FIFO_START_REG		0x6	/*  software start aquistion trigger */
+#define FIFO_RESET_REG		0x8	/*  clears fifo + fifo flags */
+#define FIFO_DATA_REG		0xa	/*  read data */
+#define DMA_TC_CLEAR_REG		0xe	/*  clear dma terminal count interrupt */
+#define STATUS_REG		0x12	/*  read only */
+#define   FNE_BIT		0x1	/*  fifo not empty */
+#define   OVFL_BIT		0x8	/*  fifo overflow */
+#define   EDAQ_BIT		0x10	/*  end of aquisition interrupt */
+#define   DCAL_BIT		0x20	/*  offset calibration in progress */
+#define   INTR_BIT		0x40	/*  interrupt has occured */
+#define   DMA_TC_BIT		0x80	/*  dma terminal count interrupt has occured */
 #define   ID_BITS(x)	(((x) >> 8) & 0x3)
-#define IRQ_DMA_CNTRL_REG		0x12	// write only
-#define   DMA_CHAN_BITS(x)		((x) & 0x7)	// sets dma channel
-#define   DMA_EN_BIT		0x8	// enables dma
-#define   IRQ_LVL_BITS(x)		(((x) & 0xf) << 4)	// sets irq level
-#define   FIFO_INTR_EN_BIT		0x100	// enable fifo interrupts
-#define   FIFO_INTR_FHF_BIT		0x200	// interrupt fifo half full
-#define   DMA_INTR_EN_BIT 		0x800	// enable interrupt on dma terminal count
-#define   DMA_DEM_EN_BIT	0x1000	// enables demand mode dma
+#define IRQ_DMA_CNTRL_REG		0x12	/*  write only */
+#define   DMA_CHAN_BITS(x)		((x) & 0x7)	/*  sets dma channel */
+#define   DMA_EN_BIT		0x8	/*  enables dma */
+#define   IRQ_LVL_BITS(x)		(((x) & 0xf) << 4)	/*  sets irq level */
+#define   FIFO_INTR_EN_BIT		0x100	/*  enable fifo interrupts */
+#define   FIFO_INTR_FHF_BIT		0x200	/*  interrupt fifo half full */
+#define   DMA_INTR_EN_BIT 		0x800	/*  enable interrupt on dma terminal count */
+#define   DMA_DEM_EN_BIT	0x1000	/*  enables demand mode dma */
 #define I8253_BASE_REG		0x14
 #define I8253_MODE_REG		0x17
-#define   HW_COUNT_DISABLE		0x30	// disable hardware counting of conversions
+#define   HW_COUNT_DISABLE		0x30	/*  disable hardware counting of conversions */
 
 struct a2150_board {
 	const char *name;
-	int clock[4];		// master clock periods, in nanoseconds
-	int num_clocks;		// number of available master clock speeds
-	int ai_speed;		// maximum conversion rate in nanoseconds
+	int clock[4];		/*  master clock periods, in nanoseconds */
+	int num_clocks;		/*  number of available master clock speeds */
+	int ai_speed;		/*  maximum conversion rate in nanoseconds */
 };
 
-//analog input range
+/* analog input range */
 static const struct comedi_lrange range_a2150 = {
 	1,
 	{
@@ -134,7 +134,7 @@ static const struct comedi_lrange range_a2150 = {
 		}
 };
 
-// enum must match board indices
+/* enum must match board indices */
 enum { a2150_c, a2150_s };
 static const struct a2150_board a2150_boards[] = {
 	{
@@ -159,11 +159,11 @@ static const struct a2150_board a2150_boards[] = {
 struct a2150_private {
 
 	volatile unsigned int count;	/* number of data points left to be taken */
-	unsigned int dma;	// dma channel
-	s16 *dma_buffer;	// dma buffer
-	unsigned int dma_transfer_size;	// size in bytes of dma transfers
-	int irq_dma_bits;	// irq/dma register bits
-	int config_bits;	// config register bits
+	unsigned int dma;	/*  dma channel */
+	s16 *dma_buffer;	/*  dma buffer */
+	unsigned int dma_transfer_size;	/*  size in bytes of dma transfers */
+	int irq_dma_bits;	/*  irq/dma register bits */
+	int config_bits;	/*  config register bits */
 };
 
 
@@ -226,7 +226,7 @@ static irqreturn_t a2150_interrupt(int irq, void *d PT_REGS_ARG)
 		comedi_error(dev, "premature interrupt");
 		return IRQ_HANDLED;
 	}
-	// initialize async here to make sure s is not NULL
+	/*  initialize async here to make sure s is not NULL */
 	async = s->async;
 	async->events = 0;
 	cmd = &async->cmd;
@@ -258,7 +258,7 @@ static irqreturn_t a2150_interrupt(int irq, void *d PT_REGS_ARG)
 	 * count and address get set correctly */
 	clear_dma_ff(devpriv->dma);
 
-	// figure out how many points to read
+	/*  figure out how many points to read */
 	max_points = devpriv->dma_transfer_size / sample_size;
 	/* residue is the number of points left to be done on the dma
 	 * transfer.  It should always be zero at this point unless
@@ -269,7 +269,7 @@ static irqreturn_t a2150_interrupt(int irq, void *d PT_REGS_ARG)
 	if (devpriv->count < num_points && cmd->stop_src == TRIG_COUNT)
 		num_points = devpriv->count;
 
-	// figure out how many points will be stored next time
+	/*  figure out how many points will be stored next time */
 	leftover = 0;
 	if (cmd->stop_src == TRIG_NONE) {
 		leftover = devpriv->dma_transfer_size / sample_size;
@@ -288,7 +288,7 @@ static irqreturn_t a2150_interrupt(int irq, void *d PT_REGS_ARG)
 	for (i = 0; i < num_points; i++) {
 		/* write data point to comedi buffer */
 		dpnt = devpriv->dma_buffer[i];
-		// convert from 2's complement to unsigned coding
+		/*  convert from 2's complement to unsigned coding */
 		dpnt ^= 0x8000;
 		cfc_write_to_buffer(s, dpnt);
 		if (cmd->stop_src == TRIG_COUNT) {
@@ -299,7 +299,7 @@ static irqreturn_t a2150_interrupt(int irq, void *d PT_REGS_ARG)
 			}
 		}
 	}
-	// re-enable  dma
+	/*  re-enable  dma */
 	if (leftover) {
 		set_dma_addr(devpriv->dma, virt_to_bus(devpriv->dma_buffer));
 		set_dma_count(devpriv->dma, leftover * sample_size);
@@ -317,7 +317,7 @@ static irqreturn_t a2150_interrupt(int irq, void *d PT_REGS_ARG)
 	return IRQ_HANDLED;
 }
 
-// probes board type, returns offset
+/* probes board type, returns offset */
 static int a2150_probe(struct comedi_device * dev)
 {
 	int status = inw(dev->iobase + STATUS_REG);
@@ -365,7 +365,7 @@ static int a2150_attach(struct comedi_device * dev, struct comedi_devconfig * it
 
 	/* grab our IRQ */
 	if (irq) {
-		// check that irq is supported
+		/*  check that irq is supported */
 		if (irq < 3 || irq == 8 || irq == 13 || irq > 15) {
 			printk(" invalid irq line %u\n", irq);
 			return -EINVAL;
@@ -378,7 +378,7 @@ static int a2150_attach(struct comedi_device * dev, struct comedi_devconfig * it
 		devpriv->irq_dma_bits |= IRQ_LVL_BITS(irq);
 		dev->irq = irq;
 	}
-	// initialize dma
+	/*  initialize dma */
 	if (dma) {
 		if (dma == 4 || dma > 7) {
 			printk(" invalid dma channel %u\n", dma);
@@ -424,16 +424,16 @@ static int a2150_attach(struct comedi_device * dev, struct comedi_devconfig * it
 	 * prevent hardware count from stopping aquisition */
 	outw(HW_COUNT_DISABLE, dev->iobase + I8253_MODE_REG);
 
-	// set card's irq and dma levels
+	/*  set card's irq and dma levels */
 	outw(devpriv->irq_dma_bits, dev->iobase + IRQ_DMA_CNTRL_REG);
 
-	// reset and sync adc clock circuitry
+	/*  reset and sync adc clock circuitry */
 	outw_p(DPD_BIT | APD_BIT, dev->iobase + CONFIG_REG);
 	outw_p(DPD_BIT, dev->iobase + CONFIG_REG);
-	// initialize configuration register
+	/*  initialize configuration register */
 	devpriv->config_bits = 0;
 	outw(devpriv->config_bits, dev->iobase + CONFIG_REG);
-	// wait until offset calibration is done, then enable analog inputs
+	/*  wait until offset calibration is done, then enable analog inputs */
 	for (i = 0; i < timeout; i++) {
 		if ((DCAL_BIT & inw(dev->iobase + STATUS_REG)) == 0)
 			break;
@@ -455,7 +455,7 @@ static int a2150_detach(struct comedi_device * dev)
 
 	/* only free stuff if it has been allocated by _attach */
 	if (dev->iobase) {
-		// put board in power-down mode
+		/*  put board in power-down mode */
 		outw(APD_BIT | DPD_BIT, dev->iobase + CONFIG_REG);
 		release_region(dev->iobase, A2150_SIZE);
 	}
@@ -474,14 +474,14 @@ static int a2150_detach(struct comedi_device * dev)
 
 static int a2150_cancel(struct comedi_device * dev, struct comedi_subdevice * s)
 {
-	// disable dma on card
+	/*  disable dma on card */
 	devpriv->irq_dma_bits &= ~DMA_INTR_EN_BIT & ~DMA_EN_BIT;
 	outw(devpriv->irq_dma_bits, dev->iobase + IRQ_DMA_CNTRL_REG);
 
-	// disable computer's dma
+	/*  disable computer's dma */
 	disable_dma(devpriv->dma);
 
-	// clear fifo and reset triggering circuitry
+	/*  clear fifo and reset triggering circuitry */
 	outw(0, dev->iobase + FIFO_RESET_REG);
 
 	return 0;
@@ -582,7 +582,7 @@ static int a2150_ai_cmdtest(struct comedi_device * dev, struct comedi_subdevice
 	if (err)
 		return 4;
 
-	// check channel/gain list against card's limitations
+	/*  check channel/gain list against card's limitations */
 	if (cmd->chanlist) {
 		startChan = CR_CHAN(cmd->chanlist[0]);
 		for (i = 1; i < cmd->chanlist_len; i++) {
@@ -635,7 +635,7 @@ static int a2150_ai_cmd(struct comedi_device * dev, struct comedi_subdevice * s)
 			" dma incompatible with hard real-time interrupt (TRIG_RT), aborting");
 		return -1;
 	}
-	// clear fifo and reset triggering circuitry
+	/*  clear fifo and reset triggering circuitry */
 	outw(0, dev->iobase + FIFO_RESET_REG);
 
 	/* setup chanlist */
@@ -643,7 +643,7 @@ static int a2150_ai_cmd(struct comedi_device * dev, struct comedi_subdevice * s)
 			cmd->chanlist_len) < 0)
 		return -1;
 
-	// setup ac/dc coupling
+	/*  setup ac/dc coupling */
 	if (CR_AREF(cmd->chanlist[0]) == AREF_OTHER)
 		devpriv->config_bits |= AC0_BIT;
 	else
@@ -653,23 +653,23 @@ static int a2150_ai_cmd(struct comedi_device * dev, struct comedi_subdevice * s)
 	else
 		devpriv->config_bits &= ~AC1_BIT;
 
-	// setup timing
+	/*  setup timing */
 	a2150_get_timing(dev, &cmd->scan_begin_arg, cmd->flags);
 
-	// send timing, channel, config bits
+	/*  send timing, channel, config bits */
 	outw(devpriv->config_bits, dev->iobase + CONFIG_REG);
 
-	// initialize number of samples remaining
+	/*  initialize number of samples remaining */
 	devpriv->count = cmd->stop_arg * cmd->chanlist_len;
 
-	// enable computer's dma
+	/*  enable computer's dma */
 	lock_flags = claim_dma_lock();
 	disable_dma(devpriv->dma);
 	/* clear flip-flop to make sure 2-byte registers for
 	 * count and address get set correctly */
 	clear_dma_ff(devpriv->dma);
 	set_dma_addr(devpriv->dma, virt_to_bus(devpriv->dma_buffer));
-	// set size of transfer to fill in 1/3 second
+	/*  set size of transfer to fill in 1/3 second */
 #define ONE_THIRD_SECOND 333333333
 	devpriv->dma_transfer_size =
 		sizeof(devpriv->dma_buffer[0]) * cmd->chanlist_len *
@@ -688,36 +688,36 @@ static int a2150_ai_cmd(struct comedi_device * dev, struct comedi_subdevice * s)
 	 * one spurious interrupt that has been happening */
 	outw(0x00, dev->iobase + DMA_TC_CLEAR_REG);
 
-	// enable dma on card
+	/*  enable dma on card */
 	devpriv->irq_dma_bits |= DMA_INTR_EN_BIT | DMA_EN_BIT;
 	outw(devpriv->irq_dma_bits, dev->iobase + IRQ_DMA_CNTRL_REG);
 
-	// may need to wait 72 sampling periods if timing was changed
+	/*  may need to wait 72 sampling periods if timing was changed */
 	i8254_load(dev->iobase + I8253_BASE_REG, 0, 2, 72, 0);
 
-	// setup start triggering
+	/*  setup start triggering */
 	trigger_bits = 0;
-	// decide if we need to wait 72 periods for valid data
+	/*  decide if we need to wait 72 periods for valid data */
 	if (cmd->start_src == TRIG_NOW &&
 		(old_config_bits & CLOCK_MASK) !=
 		(devpriv->config_bits & CLOCK_MASK)) {
-		// set trigger source to delay trigger
+		/*  set trigger source to delay trigger */
 		trigger_bits |= DELAY_TRIGGER_BITS;
 	} else {
-		// otherwise no delay
+		/*  otherwise no delay */
 		trigger_bits |= POST_TRIGGER_BITS;
 	}
-	// enable external hardware trigger
+	/*  enable external hardware trigger */
 	if (cmd->start_src == TRIG_EXT) {
 		trigger_bits |= HW_TRIG_EN;
 	} else if (cmd->start_src == TRIG_OTHER) {
-		// XXX add support for level/slope start trigger using TRIG_OTHER
+		/*  XXX add support for level/slope start trigger using TRIG_OTHER */
 		comedi_error(dev, "you shouldn't see this?");
 	}
-	// send trigger config bits
+	/*  send trigger config bits */
 	outw(trigger_bits, dev->iobase + TRIGGER_REG);
 
-	// start aquisition for soft trigger
+	/*  start aquisition for soft trigger */
 	if (cmd->start_src == TRIG_NOW) {
 		outw(0, dev->iobase + FIFO_START_REG);
 	}
@@ -735,28 +735,28 @@ static int a2150_ai_rinsn(struct comedi_device * dev, struct comedi_subdevice *
 	static const int timeout = 100000;
 	static const int filter_delay = 36;
 
-	// clear fifo and reset triggering circuitry
+	/*  clear fifo and reset triggering circuitry */
 	outw(0, dev->iobase + FIFO_RESET_REG);
 
 	/* setup chanlist */
 	if (a2150_set_chanlist(dev, CR_CHAN(insn->chanspec), 1) < 0)
 		return -1;
 
-	// set dc coupling
+	/*  set dc coupling */
 	devpriv->config_bits &= ~AC0_BIT;
 	devpriv->config_bits &= ~AC1_BIT;
 
-	// send timing, channel, config bits
+	/*  send timing, channel, config bits */
 	outw(devpriv->config_bits, dev->iobase + CONFIG_REG);
 
-	// disable dma on card
+	/*  disable dma on card */
 	devpriv->irq_dma_bits &= ~DMA_INTR_EN_BIT & ~DMA_EN_BIT;
 	outw(devpriv->irq_dma_bits, dev->iobase + IRQ_DMA_CNTRL_REG);
 
-	// setup start triggering
+	/*  setup start triggering */
 	outw(0, dev->iobase + TRIGGER_REG);
 
-	// start aquisition for soft trigger
+	/*  start aquisition for soft trigger */
 	outw(0, dev->iobase + FIFO_START_REG);
 
 	/* there is a 35.6 sample delay for data to get through the antialias filter */
@@ -773,7 +773,7 @@ static int a2150_ai_rinsn(struct comedi_device * dev, struct comedi_subdevice *
 		inw(dev->iobase + FIFO_DATA_REG);
 	}
 
-	// read data
+	/*  read data */
 	for (n = 0; n < insn->n; n++) {
 		for (i = 0; i < timeout; i++) {
 			if (inw(dev->iobase + STATUS_REG) & FNE_BIT)
@@ -794,7 +794,7 @@ static int a2150_ai_rinsn(struct comedi_device * dev, struct comedi_subdevice *
 		data[n] ^= 0x8000;
 	}
 
-	// clear fifo and reset triggering circuitry
+	/*  clear fifo and reset triggering circuitry */
 	outw(0, dev->iobase + FIFO_RESET_REG);
 
 	return n;
@@ -809,7 +809,7 @@ static int a2150_get_timing(struct comedi_device * dev, unsigned int *period,
 	int lub_divisor_shift, lub_index, glb_divisor_shift, glb_index;
 	int i, j;
 
-	// initialize greatest lower and least upper bounds
+	/*  initialize greatest lower and least upper bounds */
 	lub_divisor_shift = 3;
 	lub_index = 0;
 	lub = thisboard->clock[lub_index] * (1 << lub_divisor_shift);
@@ -817,19 +817,19 @@ static int a2150_get_timing(struct comedi_device * dev, unsigned int *period,
 	glb_index = thisboard->num_clocks - 1;
 	glb = thisboard->clock[glb_index] * (1 << glb_divisor_shift);
 
-	// make sure period is in available range
+	/*  make sure period is in available range */
 	if (*period < glb)
 		*period = glb;
 	if (*period > lub)
 		*period = lub;
 
-	// we can multiply period by 1, 2, 4, or 8, using (1 << i)
+	/*  we can multiply period by 1, 2, 4, or 8, using (1 << i) */
 	for (i = 0; i < 4; i++) {
-		// there are a maximum of 4 master clocks
+		/*  there are a maximum of 4 master clocks */
 		for (j = 0; j < thisboard->num_clocks; j++) {
-			// temp is the period in nanosec we are evaluating
+			/*  temp is the period in nanosec we are evaluating */
 			temp = thisboard->clock[j] * (1 << i);
-			// if it is the best match yet
+			/*  if it is the best match yet */
 			if (temp < lub && temp >= *period) {
 				lub_divisor_shift = i;
 				lub_index = j;
@@ -846,7 +846,7 @@ static int a2150_get_timing(struct comedi_device * dev, unsigned int *period,
 	switch (flags) {
 	case TRIG_ROUND_NEAREST:
 	default:
-		// if least upper bound is better approximation
+		/*  if least upper bound is better approximation */
 		if (lub - *period < *period - glb) {
 			*period = lub;
 		} else {
@@ -861,7 +861,7 @@ static int a2150_get_timing(struct comedi_device * dev, unsigned int *period,
 		break;
 	}
 
-	// set clock bits for config register appropriately
+	/*  set clock bits for config register appropriately */
 	devpriv->config_bits &= ~CLOCK_MASK;
 	if (*period == lub) {
 		devpriv->config_bits |=
-- 
1.6.3.2

_______________________________________________
devel mailing list
devel@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/devel
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
[PATCH 001/342] Staging: add mailing list address for stag ..., Greg Kroah-Hartman, (Fri Jun 19, 11:03 am)
[PATCH 1/4] Staging: w35und: unregister device from the ie ..., Greg Kroah-Hartman, (Fri Jun 19, 11:03 am)
[PATCH 002/342] Staging: comedi: Remove ni_board typedef, Greg Kroah-Hartman, (Fri Jun 19, 11:03 am)
[PATCH 2/4] Staging: rt2870: new device id, Greg Kroah-Hartman, (Fri Jun 19, 11:03 am)
[PATCH 003/342] Staging: comedi: Remove ni_private typedef, Greg Kroah-Hartman, (Fri Jun 19, 11:03 am)
[PATCH 3/4] Staging: rtl8187se: Fix compilation warnings a ..., Greg Kroah-Hartman, (Fri Jun 19, 11:03 am)
[PATCH 4/4] Staging: comedi: David doesn't want to get com ..., Greg Kroah-Hartman, (Fri Jun 19, 11:03 am)
[PATCH 004/342] Staging: comedi: Remove local_info_t typed ..., Greg Kroah-Hartman, (Fri Jun 19, 11:03 am)
[PATCH 005/342] Staging: comedi: Remove dio24_board_struct ..., Greg Kroah-Hartman, (Fri Jun 19, 11:03 am)
[PATCH 006/342] Staging: comedi: Remove local_info_t typed ..., Greg Kroah-Hartman, (Fri Jun 19, 11:03 am)
[PATCH 007/342] Staging: comedi: Remove BYTE and *PBYTE ty ..., Greg Kroah-Hartman, (Fri Jun 19, 11:03 am)
[PATCH 008/342] Staging: comedi: Remove SHORT and *PSHORT ..., Greg Kroah-Hartman, (Fri Jun 19, 11:03 am)
[PATCH 009/342] Staging: comedi: Remove USHORT and *PUSHOR ..., Greg Kroah-Hartman, (Fri Jun 19, 11:03 am)
[PATCH 010/342] Staging: comedi: Remove WORD and *PWORD ty ..., Greg Kroah-Hartman, (Fri Jun 19, 11:03 am)
[PATCH 011/342] Staging: comedi: Remove INT and *PINT type ..., Greg Kroah-Hartman, (Fri Jun 19, 11:03 am)
[PATCH 012/342] Staging: comedi: Remove UINT and *PUINT ty ..., Greg Kroah-Hartman, (Fri Jun 19, 11:03 am)
[PATCH 013/342] Staging: comedi: Remove LONG and *PLONG ty ..., Greg Kroah-Hartman, (Fri Jun 19, 11:03 am)
[PATCH 014/342] Staging: comedi: Remove ULONG and *PULONG ..., Greg Kroah-Hartman, (Fri Jun 19, 11:03 am)
[PATCH 015/342] Staging: comedi: Remove DWORD and *PDWORD ..., Greg Kroah-Hartman, (Fri Jun 19, 11:03 am)
[PATCH 016/342] Staging: comedi: Remove ULONG_PTR typedef ..., Greg Kroah-Hartman, (Fri Jun 19, 11:04 am)
[PATCH 017/342] Staging: comedi: Remove PCRANGE typedef in ..., Greg Kroah-Hartman, (Fri Jun 19, 11:04 am)
[PATCH 018/342] Staging: comedi: Remove boardtype typedef ..., Greg Kroah-Hartman, (Fri Jun 19, 11:04 am)
[PATCH 019/342] Staging: comedi: Remove str_ModuleInfo typ ..., Greg Kroah-Hartman, (Fri Jun 19, 11:04 am)
[PATCH 020/342] Staging: comedi: Remove addi_private typed ..., Greg Kroah-Hartman, (Fri Jun 19, 11:04 am)
[PATCH 021/342] Staging: comedi: Remove str_MainHeader typ ..., Greg Kroah-Hartman, (Fri Jun 19, 11:04 am)
[PATCH 022/342] Staging: comedi: Remove str_DigitalInputHe ..., Greg Kroah-Hartman, (Fri Jun 19, 11:04 am)
[PATCH 023/342] Staging: comedi: Remove str_DigitalOutputH ..., Greg Kroah-Hartman, (Fri Jun 19, 11:04 am)
[PATCH 024/342] Staging: comedi: Remove str_TimerDetails t ..., Greg Kroah-Hartman, (Fri Jun 19, 11:04 am)
[PATCH 025/342] Staging: comedi: Remove str_TimerMainHeade ..., Greg Kroah-Hartman, (Fri Jun 19, 11:04 am)
[PATCH 026/342] Staging: comedi: Remove str_AnalogReadInfo ..., Greg Kroah-Hartman, (Fri Jun 19, 11:04 am)
[PATCH 027/342] Staging: comedi: Remove str_Module typedef ..., Greg Kroah-Hartman, (Fri Jun 19, 11:04 am)
[PATCH 028/342] Staging: comedi: Remove str_BoardInfos typ ..., Greg Kroah-Hartman, (Fri Jun 19, 11:04 am)
[PATCH 029/342] Staging: comedi: Remove str_ADDIDATA_RTDSt ..., Greg Kroah-Hartman, (Fri Jun 19, 11:04 am)
[PATCH 030/342] Staging: comedi: Remove labpc_board_struct ..., Greg Kroah-Hartman, (Fri Jun 19, 11:04 am)
[PATCH 031/342] Staging: comedi: Remove labpc_private typedef, Greg Kroah-Hartman, (Fri Jun 19, 11:04 am)
[PATCH 032/342] Staging: comedi: Remove str_AnalogInputHea ..., Greg Kroah-Hartman, (Fri Jun 19, 11:04 am)
[PATCH 033/342] Staging: comedi: remove C99 comments in 8253.h, Greg Kroah-Hartman, (Fri Jun 19, 11:04 am)
[PATCH 034/342] Staging: comedi: remove C99 comments in ac ..., Greg Kroah-Hartman, (Fri Jun 19, 11:04 am)
[PATCH 035/342] Staging: comedi: remove C99 comments in AP ..., Greg Kroah-Hartman, (Fri Jun 19, 11:04 am)
[PATCH 036/342] Staging: comedi: remove C99 comments in da ..., Greg Kroah-Hartman, (Fri Jun 19, 11:04 am)
[PATCH 037/342] Staging: comedi: remove C99 comments in pc ..., Greg Kroah-Hartman, (Fri Jun 19, 11:04 am)
[PATCH 038/342] Staging: comedi: remove C99 comments in hw ..., Greg Kroah-Hartman, (Fri Jun 19, 11:04 am)
[PATCH 039/342] Staging: comedi: remove C99 comments in AP ..., Greg Kroah-Hartman, (Fri Jun 19, 11:04 am)
[PATCH 040/342] Staging: comedi: remove C99 comments in hw ..., Greg Kroah-Hartman, (Fri Jun 19, 11:04 am)
[PATCH 041/342] Staging: comedi: remove C99 comments in hw ..., Greg Kroah-Hartman, (Fri Jun 19, 11:04 am)
[PATCH 042/342] Staging: comedi: remove C99 comments in hw ..., Greg Kroah-Hartman, (Fri Jun 19, 11:04 am)
[PATCH 043/342] Staging: comedi: remove C99 comments in ad ..., Greg Kroah-Hartman, (Fri Jun 19, 11:04 am)
[PATCH 044/342] Staging: comedi: remove C99 comments in ad ..., Greg Kroah-Hartman, (Fri Jun 19, 11:04 am)
[PATCH 045/342] Staging: comedi: remove C99 comments in ad ..., Greg Kroah-Hartman, (Fri Jun 19, 11:04 am)
[PATCH 046/342] Staging: comedi: remove C99 comments in c6 ..., Greg Kroah-Hartman, (Fri Jun 19, 11:04 am)
[PATCH 047/342] Staging: comedi: remove C99 comments in cb ..., Greg Kroah-Hartman, (Fri Jun 19, 11:04 am)
[PATCH 048/342] Staging: comedi: remove C99 comments in cb ..., Greg Kroah-Hartman, (Fri Jun 19, 11:04 am)
[PATCH 049/342] Staging: comedi: remove C99 comments in cb ..., Greg Kroah-Hartman, (Fri Jun 19, 11:04 am)
[PATCH 050/342] Staging: comedi: remove C99 comments in gs ..., Greg Kroah-Hartman, (Fri Jun 19, 11:04 am)
[PATCH 051/342] Staging: comedi: remove C99 comments in mp ..., Greg Kroah-Hartman, (Fri Jun 19, 11:04 am)
[PATCH 052/342] Staging: comedi: remove C99 comments in ni ..., Greg Kroah-Hartman, (Fri Jun 19, 11:04 am)
[PATCH 053/342] Staging: comedi: remove C99 comments in ni ..., Greg Kroah-Hartman, (Fri Jun 19, 11:04 am)
[PATCH 054/342] Staging: comedi: remove C99 comments in pc ..., Greg Kroah-Hartman, (Fri Jun 19, 11:04 am)
[PATCH 055/342] Staging: comedi: remove C99 comments in pc ..., Greg Kroah-Hartman, (Fri Jun 19, 11:04 am)
[PATCH 056/342] Staging: comedi: remove C99 comments in s526.c, Greg Kroah-Hartman, (Fri Jun 19, 11:04 am)
[PATCH 057/342] staging: comedi, remove interrupt.h, Greg Kroah-Hartman, (Fri Jun 19, 11:04 am)
[PATCH 058/342] Staging: comedi: Remove C99 comments, Greg Kroah-Hartman, (Fri Jun 19, 11:04 am)
[PATCH 059/342] Staging: comedi: Finish removing ni_privat ..., Greg Kroah-Hartman, (Fri Jun 19, 11:04 am)
[PATCH 060/342] Staging: comedi: 'pcmcia_parse_tuple()' no ..., Greg Kroah-Hartman, (Fri Jun 19, 11:04 am)
[PATCH 061/342] Staging: comedi: fix build errors in pcmci ..., Greg Kroah-Hartman, (Fri Jun 19, 11:04 am)
[PATCH 062/342] Staging: comedi: set PCI and PCMCIA defines, Greg Kroah-Hartman, (Fri Jun 19, 11:04 am)
[PATCH 063/342] Staging: comedi: Fixed Kconfig option for ..., Greg Kroah-Hartman, (Fri Jun 19, 11:04 am)
[PATCH 064/342] Staging: comedi: pcl818: Fix option handli ..., Greg Kroah-Hartman, (Fri Jun 19, 11:04 am)
[PATCH 065/342] Staging: comedi: pcl818: Tidy up AI comman ..., Greg Kroah-Hartman, (Fri Jun 19, 11:04 am)
[PATCH 066/342] Staging: Comedi: ni_600x: Added support fo ..., Greg Kroah-Hartman, (Fri Jun 19, 11:04 am)
[PATCH 067/342] Staging: comedi: Work around malformed RTA ..., Greg Kroah-Hartman, (Fri Jun 19, 11:04 am)
[PATCH 068/342] Staging: comedi: Undo stupid commit made 3 ..., Greg Kroah-Hartman, (Fri Jun 19, 11:04 am)
[PATCH 069/342] Staging: comedi: amplc_pc236: Corrected do ..., Greg Kroah-Hartman, (Fri Jun 19, 11:04 am)
[PATCH 070/342] Staging: comedi: Added sysfs attribute fil ..., Greg Kroah-Hartman, (Fri Jun 19, 11:04 am)
[PATCH 071/342] Staging: comedi: jr3_pci: Use struct devic ..., Greg Kroah-Hartman, (Fri Jun 19, 11:04 am)
[PATCH 072/342] Staging: comedi: replace __FUNCTION__ usages, Greg Kroah-Hartman, (Fri Jun 19, 11:04 am)
[PATCH 073/342] Staging: comedi: remove dupilcated #include, Greg Kroah-Hartman, (Fri Jun 19, 11:04 am)
[PATCH 075/342] Staging: comedi: Add spaces after commas, Greg Kroah-Hartman, (Fri Jun 19, 11:04 am)
[PATCH 076/342] Staging Comedi: fix spacing around parens, Greg Kroah-Hartman, (Fri Jun 19, 11:05 am)
[PATCH 077/342] Staging: Comedi: change space indentation ..., Greg Kroah-Hartman, (Fri Jun 19, 11:05 am)
[PATCH 078/342] Staging: comedi: add vmk80xx USB driver, Greg Kroah-Hartman, (Fri Jun 19, 11:05 am)
[PATCH 079/342] Staging: comedi: vmk80xx.c: get the driver ..., Greg Kroah-Hartman, (Fri Jun 19, 11:05 am)
[PATCH 080/342] Staging: comedi: Makefile changes, Greg Kroah-Hartman, (Fri Jun 19, 11:05 am)
[PATCH 081/342] Staging: comedi: non working tests on unsi ..., Greg Kroah-Hartman, (Fri Jun 19, 11:05 am)
[PATCH 082/342] Staging: comedi: remove assignment in cond ..., Greg Kroah-Hartman, (Fri Jun 19, 11:05 am)
[PATCH 083/342] Staging: comedi: Remove parens around retu ..., Greg Kroah-Hartman, (Fri Jun 19, 11:05 am)
[PATCH 084/342] Staging: comedi: fix the way structs are i ..., Greg Kroah-Hartman, (Fri Jun 19, 11:05 am)
[PATCH 085/342] Staging: comedi: more remove C99 comments, Greg Kroah-Hartman, (Fri Jun 19, 11:05 am)
[PATCH 086/342] Staging: comedi: remove space after ampersand, Greg Kroah-Hartman, (Fri Jun 19, 11:05 am)
[PATCH 088/342] Staging: comedi: more fix the way structs ..., Greg Kroah-Hartman, (Fri Jun 19, 11:05 am)
[PATCH 089/342] Staging: comedi: make use of ARRAY_SIZE macro, Greg Kroah-Hartman, (Fri Jun 19, 11:05 am)
[PATCH 090/342] Staging: comedi: comment out useless if, Greg Kroah-Hartman, (Fri Jun 19, 11:05 am)
[PATCH 091/342] Staging: comedi: move while to same line a ..., Greg Kroah-Hartman, (Fri Jun 19, 11:05 am)
[PATCH 092/342] Staging: comedi: convert usbdux* to use fi ..., Greg Kroah-Hartman, (Fri Jun 19, 11:05 am)
[PATCH 093/342] Staging: comedi: remove comedi-specific wr ..., Greg Kroah-Hartman, (Fri Jun 19, 11:05 am)
[PATCH 094/342] Staging: comedi: remove RT code, Greg Kroah-Hartman, (Fri Jun 19, 11:05 am)
[PATCH 095/342] Staging: comedi: remove some RT code that ..., Greg Kroah-Hartman, (Fri Jun 19, 11:05 am)
[PATCH 096/342] Staging: comedi: replace for loop with msl ..., Greg Kroah-Hartman, (Fri Jun 19, 11:05 am)
[PATCH 097/342] Staging: comedi: simply read and write fun ..., Greg Kroah-Hartman, (Fri Jun 19, 11:05 am)
[PATCH 098/342] Staging: Comedi: vmk80xx: Add k8061 support, Greg Kroah-Hartman, (Fri Jun 19, 11:05 am)
[PATCH 099/342] staging: comedi: fix pcmcia build breakage, Greg Kroah-Hartman, (Fri Jun 19, 11:05 am)
[PATCH 100/342] Staging: comedi: comedi_test.c should incl ..., Greg Kroah-Hartman, (Fri Jun 19, 11:05 am)
[PATCH 101/342] Staging: comedi: data.c should include delay.h, Greg Kroah-Hartman, (Fri Jun 19, 11:05 am)
[PATCH 102/342] staging: comedi: fix missing parentheses, Greg Kroah-Hartman, (Fri Jun 19, 11:05 am)
[PATCH 103/342] staging: comedi: Remove MIN macro, Greg Kroah-Hartman, (Fri Jun 19, 11:05 am)
[PATCH 104/342] staging: comedi: Move pcm do_cmdtest funct ..., Greg Kroah-Hartman, (Fri Jun 19, 11:05 am)
[PATCH 105/342] Staging: comedi: usbdux: buffer overflow e ..., Greg Kroah-Hartman, (Fri Jun 19, 11:05 am)
[PATCH 106/342] Staging: comedi: cb_pcidas.c: Fix build wa ..., Greg Kroah-Hartman, (Fri Jun 19, 11:05 am)
[PATCH 107/342] Staging: comedi: uses udelay, needs delay.h, Greg Kroah-Hartman, (Fri Jun 19, 11:05 am)
[PATCH 108/342] staging: agnx, probe cleanup, Greg Kroah-Hartman, (Fri Jun 19, 11:05 am)
[PATCH 109/342] staging: agnx, remove memlens from probe, Greg Kroah-Hartman, (Fri Jun 19, 11:05 am)
[PATCH 110/342] staging: agnx, fix fail paths in probe, Greg Kroah-Hartman, (Fri Jun 19, 11:05 am)
[PATCH 111/342] staging: agnx, fix bssid compiler warnings, Greg Kroah-Hartman, (Fri Jun 19, 11:05 am)
[PATCH 112/342] Staging: agnx: replace print_mac with %pM, Greg Kroah-Hartman, (Fri Jun 19, 11:05 am)
[PATCH 113/342] Staging: agnx: fix build warnings, Greg Kroah-Hartman, (Fri Jun 19, 11:05 am)
[PATCH 114/342] staging: meilhaus, switch to misc device, Greg Kroah-Hartman, (Fri Jun 19, 11:05 am)
[PATCH 115/342] staging: meilhaus, annotate cpi functions, Greg Kroah-Hartman, (Fri Jun 19, 11:05 am)
[PATCH 116/342] staging: meilhaus, move tables to .c, Greg Kroah-Hartman, (Fri Jun 19, 11:05 am)
[PATCH 117/342] Staging: meilhaus: Remove long-deprecated ..., Greg Kroah-Hartman, (Fri Jun 19, 11:05 am)
[PATCH 118/342] Staging: meilhaus: fix build warnings, Greg Kroah-Hartman, (Fri Jun 19, 11:05 am)
[PATCH 119/342] Staging: sxg: replace __FUNCTION__ usages, Greg Kroah-Hartman, (Fri Jun 19, 11:05 am)
[PATCH 120/342] Staging: sxg: Add missing __devexit_p(), Greg Kroah-Hartman, (Fri Jun 19, 11:05 am)
[PATCH 121/342] Staging: rt3070: replace __FUNCTION__ usages, Greg Kroah-Hartman, (Fri Jun 19, 11:05 am)
[PATCH 122/342] Staging: rt2860: Don't call sprintf() with ..., Greg Kroah-Hartman, (Fri Jun 19, 11:05 am)
[PATCH 123/342] Staging: rt2870: Don't call sprintf() with ..., Greg Kroah-Hartman, (Fri Jun 19, 11:05 am)
[PATCH 124/342] Staging: rtl8187se: Use to_delayed_work, Greg Kroah-Hartman, (Fri Jun 19, 11:05 am)
[PATCH 125/342] Staging: rtl8187se: convert to net_device_ops, Greg Kroah-Hartman, (Fri Jun 19, 11:05 am)
[PATCH 126/342] Staging: rtl8187se: wmm_param[1].ac_aci_ac ..., Greg Kroah-Hartman, (Fri Jun 19, 11:05 am)
[PATCH 127/342] Staging: rt3070: remove dupilcated #include, Greg Kroah-Hartman, (Fri Jun 19, 11:05 am)
[PATCH 128/342] Staging: remove unused #include &lt;linux/ver ..., Greg Kroah-Hartman, (Fri Jun 19, 11:05 am)
[PATCH 129/342] Staging: stlc45xx: replace print_mac with %pM, Greg Kroah-Hartman, (Fri Jun 19, 11:05 am)
[PATCH 130/342] Staging: fix operator precedence errors, Greg Kroah-Hartman, (Fri Jun 19, 11:05 am)
[PATCH 131/342] Staging: remove driver_data direct access ..., Greg Kroah-Hartman, (Fri Jun 19, 11:05 am)
[PATCH 132/342] Staging: otus: 80211core/ccmd.c: Fix Codin ..., Greg Kroah-Hartman, (Fri Jun 19, 11:05 am)
[PATCH 133/342] Staging: otus: beyond ARRAY_SIZE of wd-&gt;ap ..., Greg Kroah-Hartman, (Fri Jun 19, 11:05 am)
[PATCH 134/342] Staging winbond: boolean negation and bitw ..., Greg Kroah-Hartman, (Fri Jun 19, 11:05 am)
[PATCH 135/342] Staging: w35und: remove unused code from w ..., Greg Kroah-Hartman, (Fri Jun 19, 11:05 am)
[PATCH 136/342] Staging: w35und: replace switch error hand ..., Greg Kroah-Hartman, (Fri Jun 19, 11:06 am)
[PATCH 137/342] Staging: w35und: move hal_init_hardware() ..., Greg Kroah-Hartman, (Fri Jun 19, 11:06 am)
[PATCH 138/342] Staging: w35und: simplify error handling i ..., Greg Kroah-Hartman, (Fri Jun 19, 11:06 am)
[PATCH 139/342] Staging: w35und: simplify hal_init_hardwar ..., Greg Kroah-Hartman, (Fri Jun 19, 11:06 am)
[PATCH 140/342] Staging: w35und: more simplify hal_init_ha ..., Greg Kroah-Hartman, (Fri Jun 19, 11:06 am)
[PATCH 141/342] Staging: w35und: simplify hal_init_hardwar ..., Greg Kroah-Hartman, (Fri Jun 19, 11:06 am)
[PATCH 142/342] Staging: w35und: clean up comments in wbusb.c, Greg Kroah-Hartman, (Fri Jun 19, 11:06 am)
[PATCH 143/342] Staging: w35und: inline hal_set_phy_type() ..., Greg Kroah-Hartman, (Fri Jun 19, 11:06 am)
[PATCH 144/342] Staging: w35und: reformat wbusb.c, Greg Kroah-Hartman, (Fri Jun 19, 11:06 am)
[PATCH 145/342] Staging: w35und: remove MODULE_AUTHOR, Greg Kroah-Hartman, (Fri Jun 19, 11:06 am)
[PATCH 146/342] Staging: w35und: make led lookup tables static, Greg Kroah-Hartman, (Fri Jun 19, 11:06 am)
[PATCH 147/342] Staging: w35und: reformat wbhal.c, Greg Kroah-Hartman, (Fri Jun 19, 11:06 am)
[PATCH 148/342] Staging: w35und: merge wbhal.c to wbusb.c, Greg Kroah-Hartman, (Fri Jun 19, 11:06 am)
[PATCH 149/342] Staging: w35und: inline hal_set_rf_power() ..., Greg Kroah-Hartman, (Fri Jun 19, 11:06 am)
[PATCH 150/342] Staging: w35und: merge rest of wbhal.c to ..., Greg Kroah-Hartman, (Fri Jun 19, 11:06 am)
[PATCH 151/342] Staging: winbond: mac80211 - unify config_ ..., Greg Kroah-Hartman, (Fri Jun 19, 11:06 am)
[PATCH 152/342] Staging: wlan-ng: Move firmware loading in ..., Greg Kroah-Hartman, (Fri Jun 19, 11:06 am)
[PATCH 153/342] Staging: wlan-ng: Change KERN_DEBUG or pr_ ..., Greg Kroah-Hartman, (Fri Jun 19, 11:06 am)
[PATCH 154/342] Staging: wlan-ng: p80211wext.c: problem wi ..., Greg Kroah-Hartman, (Fri Jun 19, 11:06 am)
[PATCH 155/342] Staging: wlan-ng: Lindent cleanups, Greg Kroah-Hartman, (Fri Jun 19, 11:06 am)
[PATCH 156/342] Staging: wlan-ng: Update README file. Remo ..., Greg Kroah-Hartman, (Fri Jun 19, 11:06 am)
[PATCH 157/342] Staging: pohmelfs: move open brace to same ..., Greg Kroah-Hartman, (Fri Jun 19, 11:06 am)
[PATCH 158/342] Staging: pohmelfs: Remove C99 comments, Greg Kroah-Hartman, (Fri Jun 19, 11:06 am)
[PATCH 159/342] Staging: pohmelfs: Remove braces around si ..., Greg Kroah-Hartman, (Fri Jun 19, 11:06 am)
[PATCH 160/342] Staging: pohmelfs: Storage class should be ..., Greg Kroah-Hartman, (Fri Jun 19, 11:06 am)
[PATCH 161/342] Staging: rt2870: remove unused files, Greg Kroah-Hartman, (Fri Jun 19, 11:06 am)
[PATCH 162/342] Staging: rt2870: remove kernel version com ..., Greg Kroah-Hartman, (Fri Jun 19, 11:06 am)
[PATCH 163/342] Staging: rt3070: remove kernel version com ..., Greg Kroah-Hartman, (Fri Jun 19, 11:06 am)
[PATCH 164/342] Staging: rt2860: remove IWE_STREAM_ADD_*() ..., Greg Kroah-Hartman, (Fri Jun 19, 11:06 am)
[PATCH 165/342] Staging: rt2870: remove IWE_STREAM_ADD_*() ..., Greg Kroah-Hartman, (Fri Jun 19, 11:06 am)
[PATCH 166/342] Staging: rt2860: remove dead WIN_NDIS code, Greg Kroah-Hartman, (Fri Jun 19, 11:06 am)
[PATCH 167/342] Staging: rt2860: remove dead UNDER_CE code, Greg Kroah-Hartman, (Fri Jun 19, 11:06 am)
[PATCH 168/342] Staging: rt2870: remove dead UNDER_CE code, Greg Kroah-Hartman, (Fri Jun 19, 11:06 am)
[PATCH 169/342] Staging: rt3070: remove dead UNDER_CE code, Greg Kroah-Hartman, (Fri Jun 19, 11:06 am)
[PATCH 170/342] Staging: rt2860: remove dead WSC_AP_SUPPOR ..., Greg Kroah-Hartman, (Fri Jun 19, 11:06 am)
[PATCH 171/342] Staging: rt2870: remove dead WSC_AP_SUPPOR ..., Greg Kroah-Hartman, (Fri Jun 19, 11:06 am)
[PATCH 172/342] Staging: rt3070: remove dead *WSC_INCLUDED ..., Greg Kroah-Hartman, (Fri Jun 19, 11:06 am)
[PATCH 173/342] Staging: rt2860: remove dead WDS_SUPPORT code, Greg Kroah-Hartman, (Fri Jun 19, 11:06 am)
[PATCH 174/342] Staging: rt2870: remove dead WDS_SUPPORT code, Greg Kroah-Hartman, (Fri Jun 19, 11:06 am)
[PATCH 175/342] Staging: rt3070: remove dead WDS_SUPPORT code, Greg Kroah-Hartman, (Fri Jun 19, 11:06 am)
[PATCH 176/342] Staging: rt3070: remove dead MLME_EX code, Greg Kroah-Hartman, (Fri Jun 19, 11:06 am)
[PATCH 177/342] Staging: rt2860: remove dead APCLI_SUPPORT ..., Greg Kroah-Hartman, (Fri Jun 19, 11:06 am)
[PATCH 178/342] Staging: rt2870: remove dead APCLI_SUPPORT ..., Greg Kroah-Hartman, (Fri Jun 19, 11:06 am)
[PATCH 179/342] Staging: rt2860: remove dead CONFIG_APSTA_ ..., Greg Kroah-Hartman, (Fri Jun 19, 11:06 am)
[PATCH 180/342] Staging: rt2870: remove dead CONFIG_APSTA_ ..., Greg Kroah-Hartman, (Fri Jun 19, 11:06 am)
[PATCH 181/342] Staging: rt3070: remove dead CONFIG_APSTA_ ..., Greg Kroah-Hartman, (Fri Jun 19, 11:06 am)
[PATCH 182/342] Staging: rt2860: remove dead UCOS code, Greg Kroah-Hartman, (Fri Jun 19, 11:06 am)
[PATCH 183/342] Staging: rt2870: remove dead UCOS code, Greg Kroah-Hartman, (Fri Jun 19, 11:06 am)
[PATCH 184/342] Staging: rt3070: remove dead UCOS code, Greg Kroah-Hartman, (Fri Jun 19, 11:06 am)
[PATCH 185/342] Staging: rt2860: remove dead NINTENDO_AP code, Greg Kroah-Hartman, (Fri Jun 19, 11:06 am)
[PATCH 186/342] Staging: rt2870: remove dead NINTENDO_AP code, Greg Kroah-Hartman, (Fri Jun 19, 11:06 am)
[PATCH 187/342] Staging: rt3070: remove dead NINTENDO_AP code, Greg Kroah-Hartman, (Fri Jun 19, 11:06 am)
[PATCH 188/342] Staging: rt2860: remove dead BIN_IN_FILE code, Greg Kroah-Hartman, (Fri Jun 19, 11:06 am)
[PATCH 189/342] Staging: rt2870: remove dead BIN_IN_FILE code, Greg Kroah-Hartman, (Fri Jun 19, 11:06 am)
[PATCH 190/342] Staging: rt3070: remove dead BIN_IN_FILE code, Greg Kroah-Hartman, (Fri Jun 19, 11:06 am)
[PATCH 191/342] Staging: rt2860: remove dead RALINK_ATE code, Greg Kroah-Hartman, (Fri Jun 19, 11:06 am)
[PATCH 192/342] Staging: rt2870: remove dead RALINK_ATE code, Greg Kroah-Hartman, (Fri Jun 19, 11:06 am)
[PATCH 193/342] Staging: rt3070: remove dead RALINK_ATE code, Greg Kroah-Hartman, (Fri Jun 19, 11:06 am)
[PATCH 194/342] Staging: rt2860: remove dead BLOCK_NET_IF code, Greg Kroah-Hartman, (Fri Jun 19, 11:06 am)
[PATCH 195/342] Staging: rt2870: remove dead BLOCK_NET_IF code, Greg Kroah-Hartman, (Fri Jun 19, 11:06 am)
[PATCH 196/342] Staging: rt3070: remove dead BLOCK_NET_IF code, Greg Kroah-Hartman, (Fri Jun 19, 11:07 am)
[PATCH 197/342] Staging: rt2860: remove dead DFS_SUPPORT code, Greg Kroah-Hartman, (Fri Jun 19, 11:07 am)
[PATCH 198/342] Staging: rt2870: remove dead DFS_SUPPORT code, Greg Kroah-Hartman, (Fri Jun 19, 11:07 am)
[PATCH 199/342] Staging: rt3070: remove dead DFS_SUPPORT code, Greg Kroah-Hartman, (Fri Jun 19, 11:07 am)
[PATCH 200/342] Staging: rt2860: remove dead CARRIER_DETEC ..., Greg Kroah-Hartman, (Fri Jun 19, 11:07 am)
[PATCH 201/342] Staging: rt2870: remove dead CARRIER_DETEC ..., Greg Kroah-Hartman, (Fri Jun 19, 11:07 am)
[PATCH 202/342] Staging: rt3070: remove dead CARRIER_DETEC ..., Greg Kroah-Hartman, (Fri Jun 19, 11:07 am)
[PATCH 203/342] Staging: rt2860: remove dead MULTIPLE_CARD ..., Greg Kroah-Hartman, (Fri Jun 19, 11:07 am)
[PATCH 204/342] Staging: rt2870: remove dead MULTIPLE_CARD ..., Greg Kroah-Hartman, (Fri Jun 19, 11:07 am)
[PATCH 205/342] Staging: rt3070: remove dead MULTIPLE_CARD ..., Greg Kroah-Hartman, (Fri Jun 19, 11:07 am)
[PATCH 206/342] Staging: rt2860: remove dead QOS_DLS_SUPPO ..., Greg Kroah-Hartman, (Fri Jun 19, 11:07 am)
[PATCH 207/342] Staging: rt2870: remove dead QOS_DLS_SUPPO ..., Greg Kroah-Hartman, (Fri Jun 19, 11:07 am)
[PATCH 208/342] Staging: rt3070: remove dead QOS_DLS_SUPPO ..., Greg Kroah-Hartman, (Fri Jun 19, 11:07 am)
[PATCH 209/342] Staging: rt2860: remove dead EXT_BUILD_CHA ..., Greg Kroah-Hartman, (Fri Jun 19, 11:07 am)
[PATCH 210/342] Staging: rt2870: remove dead EXT_BUILD_CHA ..., Greg Kroah-Hartman, (Fri Jun 19, 11:07 am)
[PATCH 211/342] Staging: rt3070: remove dead EXT_BUILD_CHA ..., Greg Kroah-Hartman, (Fri Jun 19, 11:07 am)
[PATCH 212/342] Staging: rt2860: remove dead SNMP_SUPPORT code, Greg Kroah-Hartman, (Fri Jun 19, 11:07 am)
[PATCH 213/342] Staging: rt2870: remove dead SNMP_SUPPORT code, Greg Kroah-Hartman, (Fri Jun 19, 11:07 am)
[PATCH 214/342] Staging: rt3070: remove dead SNMP_SUPPORT code, Greg Kroah-Hartman, (Fri Jun 19, 11:07 am)
[PATCH 215/342] Staging: rt2860: remove dead SINGLE_SKU code, Greg Kroah-Hartman, (Fri Jun 19, 11:07 am)
[PATCH 216/342] Staging: rt2870: remove dead SINGLE_SKU code, Greg Kroah-Hartman, (Fri Jun 19, 11:07 am)
[PATCH 217/342] Staging: rt3070: remove dead SINGLE_SKU code, Greg Kroah-Hartman, (Fri Jun 19, 11:07 am)
[PATCH 218/342] Staging: rt2860: remove dead LEAP_SUPPORT code, Greg Kroah-Hartman, (Fri Jun 19, 11:07 am)
[PATCH 219/342] Staging: rt2870: remove dead LEAP_SUPPORT code, Greg Kroah-Hartman, (Fri Jun 19, 11:07 am)
[PATCH 220/342] Staging: rt3070: remove dead LEAP_SUPPORT code, Greg Kroah-Hartman, (Fri Jun 19, 11:07 am)
[PATCH 221/342] Staging: rt2860: remove dead DOT11N_DRAFT3 ..., Greg Kroah-Hartman, (Fri Jun 19, 11:07 am)
[PATCH 222/342] Staging: rt2870: remove dead DOT11N_DRAFT3 ..., Greg Kroah-Hartman, (Fri Jun 19, 11:07 am)
[PATCH 223/342] Staging: rt3070: remove dead DOT11N_DRAFT3 ..., Greg Kroah-Hartman, (Fri Jun 19, 11:07 am)
[PATCH 224/342] Staging: rt2860: remove dead INF_AMAZON_SE ..., Greg Kroah-Hartman, (Fri Jun 19, 11:07 am)
[GIT PATCH] STAGING patches for 2.6.30-git tree, Greg KH, (Fri Jun 19, 11:07 am)
[PATCH 225/342] Staging: rt2870: remove dead INF_AMAZON_SE ..., Greg Kroah-Hartman, (Fri Jun 19, 11:07 am)
[PATCH 226/342] Staging: rt3070: remove dead INF_AMAZON_SE ..., Greg Kroah-Hartman, (Fri Jun 19, 11:07 am)
[PATCH 227/342] Staging: rt2860: remove dead RT_BIG_ENDIAN ..., Greg Kroah-Hartman, (Fri Jun 19, 11:07 am)
[PATCH 228/342] Staging: rt2870: remove dead RT_BIG_ENDIAN ..., Greg Kroah-Hartman, (Fri Jun 19, 11:07 am)
[PATCH 229/342] Staging: rt3070: remove dead RT_BIG_ENDIAN ..., Greg Kroah-Hartman, (Fri Jun 19, 11:07 am)
[PATCH 230/342] Staging: rt2860: remove CONFIG_STA_SUPPORT ..., Greg Kroah-Hartman, (Fri Jun 19, 11:07 am)
[PATCH 231/342] Staging: rt2870: remove CONFIG_STA_SUPPORT ..., Greg Kroah-Hartman, (Fri Jun 19, 11:07 am)
[PATCH 232/342] Staging: rt3070: remove CONFIG_STA_SUPPORT ..., Greg Kroah-Hartman, (Fri Jun 19, 11:07 am)
[PATCH 233/342] Staging: rt2860: remove NATIVE_WPA_SUPPLIC ..., Greg Kroah-Hartman, (Fri Jun 19, 11:07 am)
[PATCH 234/342] Staging: rt2870: remove NATIVE_WPA_SUPPLIC ..., Greg Kroah-Hartman, (Fri Jun 19, 11:07 am)
[PATCH 235/342] Staging: rt3070: remove NATIVE_WPA_SUPPLIC ..., Greg Kroah-Hartman, (Fri Jun 19, 11:07 am)
[PATCH 236/342] Staging: rt2860: remove WPA_SUPPLICANT_SUP ..., Greg Kroah-Hartman, (Fri Jun 19, 11:07 am)
[PATCH 237/342] Staging: rt2870: remove WPA_SUPPLICANT_SUP ..., Greg Kroah-Hartman, (Fri Jun 19, 11:07 am)
[PATCH 238/342] Staging: rt3070: remove WPA_SUPPLICANT_SUP ..., Greg Kroah-Hartman, (Fri Jun 19, 11:07 am)
[PATCH 239/342] Staging: rt2860: remove DOT11_N_SUPPORT ifdefs, Greg Kroah-Hartman, (Fri Jun 19, 11:07 am)
[PATCH 240/342] Staging: rt2870: remove DOT11_N_SUPPORT ifdefs, Greg Kroah-Hartman, (Fri Jun 19, 11:07 am)
[PATCH 241/342] Staging: rt3070: remove DOT11_N_SUPPORT ifdefs, Greg Kroah-Hartman, (Fri Jun 19, 11:07 am)
[PATCH 242/342] Staging: rt2860: remove dead CONFIG_AP_SUP ..., Greg Kroah-Hartman, (Fri Jun 19, 11:07 am)
[PATCH 243/342] Staging: rt2870: remove dead CONFIG_AP_SUP ..., Greg Kroah-Hartman, (Fri Jun 19, 11:07 am)
[PATCH 244/342] Staging: rt3070: remove dead CONFIG_AP_SUP ..., Greg Kroah-Hartman, (Fri Jun 19, 11:07 am)
[PATCH 245/342] Staging: rt2860: use empty ASSERT() macro, Greg Kroah-Hartman, (Fri Jun 19, 11:07 am)
[PATCH 246/342] Staging: rt2870: use empty ASSERT() macro, Greg Kroah-Hartman, (Fri Jun 19, 11:07 am)
[PATCH 247/342] Staging: rt3070: use empty ASSERT() macro, Greg Kroah-Hartman, (Fri Jun 19, 11:07 am)
[PATCH 248/342] Staging: rt2860: remove dead code, Greg Kroah-Hartman, (Fri Jun 19, 11:07 am)
[PATCH 249/342] Staging: rt2870: remove dead code, Greg Kroah-Hartman, (Fri Jun 19, 11:07 am)
[PATCH 250/342] Staging: rt3070: remove dead code, Greg Kroah-Hartman, (Fri Jun 19, 11:07 am)
[PATCH 251/342] Staging: rt2870: prepare for rt{28, 30}70/ ..., Greg Kroah-Hartman, (Fri Jun 19, 11:07 am)
[PATCH 252/342] Staging: rt{28,30}70: merge rt{28,30}70/*.[ch], Greg Kroah-Hartman, (Fri Jun 19, 11:07 am)
[PATCH 253/342] Staging: rt2870: prepare for rt{28, 30}70/ ..., Greg Kroah-Hartman, (Fri Jun 19, 11:07 am)
[PATCH 254/342] Staging: rt{28, 30}70: merge rt{28, 30}70/ ..., Greg Kroah-Hartman, (Fri Jun 19, 11:07 am)
[PATCH 255/342] Staging: rt2870: prepare for rt{28, 30}70/ ..., Greg Kroah-Hartman, (Fri Jun 19, 11:07 am)
[PATCH 256/342] Staging: rt{28,30}70: merge rt{28,30}70/st ..., Greg Kroah-Hartman, (Fri Jun 19, 11:08 am)
[PATCH 257/342] Staging: rt2860: prepare for rt28[67]0/*.[ ..., Greg Kroah-Hartman, (Fri Jun 19, 11:08 am)
[PATCH 258/342] Staging: rt28[67]0: merge rt28[67]0/*.[ch], Greg Kroah-Hartman, (Fri Jun 19, 11:08 am)
[PATCH 259/342] Staging: rt2860: prepare for rt28[67]0/com ..., Greg Kroah-Hartman, (Fri Jun 19, 11:08 am)
[PATCH 260/342] Staging: rt28[67]0: merge rt28[67]0/common ..., Greg Kroah-Hartman, (Fri Jun 19, 11:08 am)
[PATCH 261/342] Staging: rt2860: prepare for rt28[67]0/sta ..., Greg Kroah-Hartman, (Fri Jun 19, 11:08 am)
[PATCH 262/342] Staging: rt28[67]0: merge rt28[67]0/sta/*.[ch], Greg Kroah-Hartman, (Fri Jun 19, 11:08 am)
[PATCH 263/342] Staging: rt2860: fix for driver RT2860 to ..., Greg Kroah-Hartman, (Fri Jun 19, 11:08 am)
[PATCH 264/342] staging: rtlxxxx: off by one in AsicSendCo ..., Greg Kroah-Hartman, (Fri Jun 19, 11:08 am)
[PATCH 265/342] Staging: rt2870: fix build warnings, Greg Kroah-Hartman, (Fri Jun 19, 11:08 am)
[PATCH 266/342] Staging: Add pristine upstream vt6655 driv ..., Greg Kroah-Hartman, (Fri Jun 19, 11:08 am)
[PATCH 267/342] Staging: vt6655 Add includes to drivers/st ..., Greg Kroah-Hartman, (Fri Jun 19, 11:08 am)
[PATCH 268/342] Staging: vt6655: Drop obsolete fsuid/fsgid ..., Greg Kroah-Hartman, (Fri Jun 19, 11:08 am)
[PATCH 269/342] Staging: vt6655: Build vt6655.ko, not viaw ..., Greg Kroah-Hartman, (Fri Jun 19, 11:08 am)
[PATCH 270/342] Staging: vt6655: Replace net_device-&gt;priv ..., Greg Kroah-Hartman, (Fri Jun 19, 11:08 am)
[PATCH 271/342] Staging: vt6655: Remove LINUX_VERSION_CODE ..., Greg Kroah-Hartman, (Fri Jun 19, 11:08 am)
[PATCH 272/342] Staging: vt6655: use net_device_ops for ma ..., Greg Kroah-Hartman, (Fri Jun 19, 11:08 am)
[PATCH 273/342] Staging: vt6655: Integrate drivers/staging ..., Greg Kroah-Hartman, (Fri Jun 19, 11:08 am)
[PATCH 274/342] Staging: vt6655: uses pci functions, shoul ..., Greg Kroah-Hartman, (Fri Jun 19, 11:08 am)
[PATCH 275/342] Staging: android: lowmemorykiller: Only it ..., Greg Kroah-Hartman, (Fri Jun 19, 11:08 am)
[PATCH 276/342] Staging: android: lowmemorykiller: Don't c ..., Greg Kroah-Hartman, (Fri Jun 19, 11:08 am)
[PATCH 277/342] Staging: android: lowmemorykiller: cleanup ..., Greg Kroah-Hartman, (Fri Jun 19, 11:08 am)
[PATCH 278/342] Staging: android: lowmemorykiller: fix pos ..., Greg Kroah-Hartman, (Fri Jun 19, 11:08 am)
[PATCH 279/342] Staging: android: timed_gpio: Separate tim ..., Greg Kroah-Hartman, (Fri Jun 19, 11:08 am)
[PATCH 280/342] Staging: android: lowmemorykiller: fix up ..., Greg Kroah-Hartman, (Fri Jun 19, 11:08 am)
[PATCH 281/342] Staging: android: logger: fix up remaining ..., Greg Kroah-Hartman, (Fri Jun 19, 11:08 am)
[PATCH 282/342] Staging: android: ram_console: fix up rema ..., Greg Kroah-Hartman, (Fri Jun 19, 11:08 am)
[PATCH 283/342] Staging: android: binder: fix up some chec ..., Greg Kroah-Hartman, (Fri Jun 19, 11:08 am)
[PATCH 284/342] Staging: android: fix Kconfig issues, Greg Kroah-Hartman, (Fri Jun 19, 11:08 am)
[PATCH 285/342] Staging: epl: do not use CLONE_SIGHAND wit ..., Greg Kroah-Hartman, (Fri Jun 19, 11:08 am)
[PATCH 286/342] Staging: add cpc-usb driver to the staging ..., Greg Kroah-Hartman, (Fri Jun 19, 11:08 am)
[PATCH 287/342] Staging: cpc-usb: fix some build problems ..., Greg Kroah-Hartman, (Fri Jun 19, 11:08 am)
[PATCH 288/342] Staging: cpc-usb: add driver to the build, Greg Kroah-Hartman, (Fri Jun 19, 11:08 am)
[PATCH 289/342] Staging: cpc-usb: fix up checkpatch errors ..., Greg Kroah-Hartman, (Fri Jun 19, 11:08 am)
[PATCH 290/342] Staging: cpc-usb: fix checkpatch warnings ..., Greg Kroah-Hartman, (Fri Jun 19, 11:08 am)
[PATCH 291/342] Staging: cpc-usb: add TODO file, Greg Kroah-Hartman, (Fri Jun 19, 11:08 am)
[PATCH 292/342] Staging: cpc-usb: Adjust NULL test, Greg Kroah-Hartman, (Fri Jun 19, 11:08 am)
[PATCH 293/342] Staging: cpc-usb: depends on PROC_FS, Greg Kroah-Hartman, (Fri Jun 19, 11:08 am)
[PATCH 294/342] Staging: cpc-usb: fix printk format warnings, Greg Kroah-Hartman, (Fri Jun 19, 11:08 am)
[PATCH 295/342] Staging: cpc-usb: fix build warnings, Greg Kroah-Hartman, (Fri Jun 19, 11:08 am)
[PATCH 296/342] Staging: add rtl8192SU wireless usb driver, Greg Kroah-Hartman, (Fri Jun 19, 11:08 am)
[PATCH 297/342] Staging: rtl8192su: fix build warnings, Greg Kroah-Hartman, (Fri Jun 19, 11:08 am)
[PATCH 298/342] Staging: rtl8192su: Correct use of ! and &amp;, Greg Kroah-Hartman, (Fri Jun 19, 11:08 am)
[PATCH 299/342] staging: wis-sony-tuner.c: fix &amp;&amp;/|| error, Greg Kroah-Hartman, (Fri Jun 19, 11:08 am)
[PATCH 300/342] staging: b3dfg: clean up MODULE_PARM_DESC ..., Greg Kroah-Hartman, (Fri Jun 19, 11:08 am)
[PATCH 301/342] Staging: oslec bug fix, Greg Kroah-Hartman, (Fri Jun 19, 11:08 am)
[PATCH 302/342] staging: p9auth: prevent some oopses and m ..., Greg Kroah-Hartman, (Fri Jun 19, 11:08 am)
[PATCH 303/342] Staging: rspiusb: make driver compile, Greg Kroah-Hartman, (Fri Jun 19, 11:08 am)
[PATCH 304/342] Staging: rspiusb: clean rspiusb code, Greg Kroah-Hartman, (Fri Jun 19, 11:08 am)
[PATCH 305/342] Staging: rspiusb.c: break the huge piusb_i ..., Greg Kroah-Hartman, (Fri Jun 19, 11:08 am)
[PATCH 306/342] Staging: rspiusb: duplicate code in pixis_io, Greg Kroah-Hartman, (Fri Jun 19, 11:08 am)
[PATCH 307/342] Staging: rspiusb: Fix a bunch of warnings., Greg Kroah-Hartman, (Fri Jun 19, 11:08 am)
[PATCH 308/342] Staging: rspiusb: copy_to/from_user relate ..., Greg Kroah-Hartman, (Fri Jun 19, 11:08 am)
[PATCH 309/342] Staging: heci: fix userspace pointer mess, Greg Kroah-Hartman, (Fri Jun 19, 11:08 am)
[PATCH 310/342] Staging: heci: fix wrong order of device_l ..., Greg Kroah-Hartman, (Fri Jun 19, 11:08 am)
[PATCH 311/342] Staging: heci: fix spinlock order mess of ..., Greg Kroah-Hartman, (Fri Jun 19, 11:08 am)
[PATCH 312/342] Staging: heci: fix softirq safe to unsafe ..., Greg Kroah-Hartman, (Fri Jun 19, 11:08 am)
[PATCH 313/342] Staging: heci: fix typos and add wait afte ..., Greg Kroah-Hartman, (Fri Jun 19, 11:08 am)
[PATCH 314/342] Staging: heci: fix setting h_is bit in h_c ..., Greg Kroah-Hartman, (Fri Jun 19, 11:08 am)
[PATCH 315/342] Staging: heci: do not print error when hec ..., Greg Kroah-Hartman, (Fri Jun 19, 11:08 am)
[PATCH 316/342] Staging: heci: fix the problem that file_e ..., Greg Kroah-Hartman, (Fri Jun 19, 11:09 am)
[PATCH 317/342] Staging: altpciechdma: Add missing __devex ..., Greg Kroah-Hartman, (Fri Jun 19, 11:09 am)
[PATCH 318/342] Staging: altpciechdma: fix build warnings, Greg Kroah-Hartman, (Fri Jun 19, 11:09 am)
[PATCH 319/342] Staging: slicoss: Add missing __devexit_p(), Greg Kroah-Hartman, (Fri Jun 19, 11:09 am)
[PATCH 320/342] Staging: slicoss: fix build warnings, Greg Kroah-Hartman, (Fri Jun 19, 11:09 am)
[PATCH 321/342] Staging: asus_oled: fix build warnings, Greg Kroah-Hartman, (Fri Jun 19, 11:09 am)
[PATCH 322/342] Staging: Add serqt_usb2, a rewrite of serq ..., Greg Kroah-Hartman, (Fri Jun 19, 11:09 am)
[PATCH 323/342] Staging: serqt_usb2 add the driver to the ..., Greg Kroah-Hartman, (Fri Jun 19, 11:09 am)
[PATCH 324/342] Staging: remove obsolete serqt_usb driver, Greg Kroah-Hartman, (Fri Jun 19, 11:09 am)
[PATCH 325/342] Staging: add pata_rdc driver, Greg Kroah-Hartman, (Fri Jun 19, 11:09 am)
[PATCH 326/342] Staging: pata_rdc: add driver to the build ..., Greg Kroah-Hartman, (Fri Jun 19, 11:09 am)
[PATCH 327/342] Staging: pata_rdc: convert code to work in ..., Greg Kroah-Hartman, (Fri Jun 19, 11:09 am)
[PATCH 328/342] Staging: pata_rdc: coding style fixes, Greg Kroah-Hartman, (Fri Jun 19, 11:09 am)
[PATCH 329/342] Staging: pata_rdc: remove function prototypes, Greg Kroah-Hartman, (Fri Jun 19, 11:09 am)
[PATCH 330/342] Staging: pata_rdc: use PCI_DEVICE, Greg Kroah-Hartman, (Fri Jun 19, 11:09 am)
[PATCH 331/342] Staging: pata_rdc: fix build warnings, Greg Kroah-Hartman, (Fri Jun 19, 11:09 am)
[PATCH 332/342] Staging: pata_rdc: remove broken flag, Greg Kroah-Hartman, (Fri Jun 19, 11:09 am)
[PATCH 333/342] Staging: pata_rdc: remove dbgprintf macro, Greg Kroah-Hartman, (Fri Jun 19, 11:09 am)
[PATCH 334/342] Staging: pata_rdc: remove DRIVER macros, Greg Kroah-Hartman, (Fri Jun 19, 11:09 am)
[PATCH 335/342] Staging: pata_rdc: remove pointless comments, Greg Kroah-Hartman, (Fri Jun 19, 11:09 am)
[PATCH 336/342] Staging: add udlfb driver, Greg Kroah-Hartman, (Fri Jun 19, 11:09 am)
[PATCH 337/342] Staging: udlfb: add udlfb driver to build, Greg Kroah-Hartman, (Fri Jun 19, 11:09 am)
[PATCH 338/342] Staging: udlfb: clean up checkpatch warnin ..., Greg Kroah-Hartman, (Fri Jun 19, 11:09 am)
[PATCH 339/342] Staging: udlfb: clean up checkpatch warnin ..., Greg Kroah-Hartman, (Fri Jun 19, 11:09 am)
[PATCH 340/342] Staging: udlfb: fix some sparse warnings., Greg Kroah-Hartman, (Fri Jun 19, 11:09 am)
[PATCH 341/342] Staging: udlfb: update to version 0.2.3, Greg Kroah-Hartman, (Fri Jun 19, 11:09 am)
[PATCH 342/342] Staging: comedi: fix build errors, Greg Kroah-Hartman, (Fri Jun 19, 11:09 am)
Re: [PATCH 155/342] Staging: wlan-ng: Lindent cleanups, Alexey Zaytsev, (Sat Jun 20, 2:39 pm)
Re: [PATCH 155/342] Staging: wlan-ng: Lindent cleanups, Pavel Roskin, (Sun Jun 21, 5:52 pm)
Re: [PATCH 155/342] Staging: wlan-ng: Lindent cleanups, Mithlesh Thukral, (Mon Jun 22, 12:50 am)
Re: [PATCH 155/342] Staging: wlan-ng: Lindent cleanups, Bernd Petrovitsch, (Mon Jun 22, 2:36 am)
Re: [PATCH 155/342] Staging: wlan-ng: Lindent cleanups, J. R. Mauro, (Mon Jun 22, 5:01 am)
Re: [PATCH 155/342] Staging: wlan-ng: Lindent cleanups, Bernd Petrovitsch, (Tue Jun 23, 2:01 am)
Re: [PATCH 155/342] Staging: wlan-ng: Lindent cleanups, Stefan Richter, (Tue Jun 23, 4:41 am)
Re: [PATCH 155/342] Staging: wlan-ng: Lindent cleanups, Mithlesh Thukral, (Tue Jun 23, 10:57 pm)
Re: [PATCH 155/342] Staging: wlan-ng: Lindent cleanups, Stefan Richter, (Tue Jun 23, 11:29 pm)
Re: [PATCH 155/342] Staging: wlan-ng: Lindent cleanups, J. R. Mauro, (Wed Jun 24, 5:01 am)
Re: [PATCH 155/342] Staging: wlan-ng: Lindent cleanups, Stefan Richter, (Wed Jun 24, 7:10 am)
Re: [PATCH 155/342] Staging: wlan-ng: Lindent cleanups, Stefan Richter, (Wed Jun 24, 7:33 am)
Re: [PATCH 296/342] Staging: add rtl8192SU wireless usb driver, Mauro Carvalho Chehab, (Thu Oct 29, 11:18 pm)