All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 16/16] Staging: comedi: fix macro coding style issue in adl_pci9111.c
@ 2010-03-10 21:59 Maurice Dawson
  2010-04-08 19:33 ` Greg KH
  0 siblings, 1 reply; 2+ messages in thread
From: Maurice Dawson @ 2010-03-10 21:59 UTC (permalink / raw)
  To: gregkh, wfp5p, devel, linux-kernel

Patch to remove trailing semi-colons from do - while loops in the adl_pci9111.c file

Signed-off-by: Maurice Dawson <mauricedawson2699@googlemail.com>
---
 drivers/staging/comedi/drivers/adl_pci9111.c |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/drivers/staging/comedi/drivers/adl_pci9111.c b/drivers/staging/comedi/drivers/adl_pci9111.c
index 5171176..5421104 100755
--- a/drivers/staging/comedi/drivers/adl_pci9111.c
+++ b/drivers/staging/comedi/drivers/adl_pci9111.c
@@ -214,7 +214,7 @@ Add external multiplexer support.
 			PCI9111_IO_BASE+PCI9111_REGISTER_INTERRUPT_CONTROL); \
 		outb(PCI9111_FFEN_SET_FIFO_ENABLE, \
 			PCI9111_IO_BASE+PCI9111_REGISTER_INTERRUPT_CONTROL); \
-	} while (0);
+	} while (0)
 
 #define pci9111_is_fifo_full() \
   ((inb(PCI9111_IO_BASE+PCI9111_REGISTER_RANGE_STATUS_READBACK)& \
@@ -271,7 +271,7 @@ Add external multiplexer support.
 			PCI9111_IO_BASE+PCI9111_REGISTER_8254_COUNTER_0); \
 		outb((data >> 8) & 0xFF, \
 			PCI9111_IO_BASE+PCI9111_REGISTER_8254_COUNTER_0); \
-	} while (0);
+	} while (0)
 
 #define pci9111_8254_counter_1_set(data) \
 	do { \
@@ -279,7 +279,7 @@ Add external multiplexer support.
 			PCI9111_IO_BASE+PCI9111_REGISTER_8254_COUNTER_1); \
 		outb((data >> 8) & 0xFF, \
 			PCI9111_IO_BASE+PCI9111_REGISTER_8254_COUNTER_1); \
-	} while (0);
+	} while (0)
 
 #define pci9111_8254_counter_2_set(data) \
 	do { \
@@ -287,7 +287,7 @@ Add external multiplexer support.
 			PCI9111_IO_BASE+PCI9111_REGISTER_8254_COUNTER_2); \
 		outb((data >> 8) & 0xFF, \
 			PCI9111_IO_BASE+PCI9111_REGISTER_8254_COUNTER_2); \
-	} while (0);
+	} while (0)
 
 /*  Function prototypes */
 
@@ -581,7 +581,7 @@ static int pci9111_ai_cancel(struct comedi_device *dev,
 	do { \
 		tmp = src; \
 		src &= flags; if (!src || tmp != src) error++; \
-	} while (0);
+	} while (0)
 
 static int
 pci9111_ai_do_cmd_test(struct comedi_device *dev,
-- 
1.6.3.3


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

* Re: [PATCH 16/16] Staging: comedi: fix macro coding style issue in adl_pci9111.c
  2010-03-10 21:59 [PATCH 16/16] Staging: comedi: fix macro coding style issue in adl_pci9111.c Maurice Dawson
@ 2010-04-08 19:33 ` Greg KH
  0 siblings, 0 replies; 2+ messages in thread
From: Greg KH @ 2010-04-08 19:33 UTC (permalink / raw)
  To: Maurice Dawson; +Cc: gregkh, wfp5p, devel, linux-kernel

On Wed, Mar 10, 2010 at 09:59:39PM +0000, Maurice Dawson wrote:
> Patch to remove trailing semi-colons from do - while loops in the adl_pci9111.c file

Doesn't apply :(

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

end of thread, other threads:[~2010-04-08 20:28 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-03-10 21:59 [PATCH 16/16] Staging: comedi: fix macro coding style issue in adl_pci9111.c Maurice Dawson
2010-04-08 19:33 ` Greg KH

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.