netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 184/199] drivers/atm/firestream.h: Checkpatch cleanup
@ 2010-05-23 20:06 Andrea Gelmini
  2010-05-23 20:06 ` [PATCH 185/199] drivers/atm/idt77252_tables.h: " Andrea Gelmini
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: Andrea Gelmini @ 2010-05-23 20:06 UTC (permalink / raw)
  To: andrea.gelmini; +Cc: Chas Williams, linux-atm-general, netdev

drivers/atm/firestream.h:2: ERROR: trailing whitespace
drivers/atm/firestream.h:4: ERROR: trailing whitespace
drivers/atm/firestream.h:5: ERROR: trailing whitespace
drivers/atm/firestream.h:6: ERROR: trailing whitespace
drivers/atm/firestream.h:7: ERROR: trailing whitespace
drivers/atm/firestream.h:191: ERROR: trailing whitespace
drivers/atm/firestream.h:221: ERROR: trailing whitespace
drivers/atm/firestream.h:232: ERROR: trailing whitespace
drivers/atm/firestream.h:385: ERROR: trailing whitespace
drivers/atm/firestream.h:458: ERROR: trailing whitespace
drivers/atm/firestream.h:501: ERROR: trailing whitespace
drivers/atm/firestream.h:501: ERROR: code indent should use tabs where possible
drivers/atm/firestream.h:511: ERROR: trailing whitespace

Signed-off-by: Andrea Gelmini <andrea.gelmini@gelma.net>
---
 drivers/atm/firestream.h |   24 ++++++++++++------------
 1 files changed, 12 insertions(+), 12 deletions(-)

diff --git a/drivers/atm/firestream.h b/drivers/atm/firestream.h
index 49e783e..840befd 100644
--- a/drivers/atm/firestream.h
+++ b/drivers/atm/firestream.h
@@ -1,10 +1,10 @@
 /* drivers/atm/firestream.h - FireStream 155 (MB86697) and
- *                            FireStream  50 (MB86695) device driver 
+ *                            FireStream  50 (MB86695) device driver
  */
- 
-/* Written & (C) 2000 by R.E.Wolff@BitWizard.nl 
- * Copied snippets from zatm.c by Werner Almesberger, EPFL LRC/ICA 
- * and ambassador.c Copyright (C) 1995-1999  Madge Networks Ltd 
+
+/* Written & (C) 2000 by R.E.Wolff@BitWizard.nl
+ * Copied snippets from zatm.c by Werner Almesberger, EPFL LRC/ICA
+ * and ambassador.c Copyright (C) 1995-1999  Madge Networks Ltd
  */
 
 /*
@@ -188,7 +188,7 @@ struct FS_BPENTRY {
  */
 
 
-/* And now for something completely different: 
+/* And now for something completely different:
  * The rest of the registers... */
 
 
@@ -218,7 +218,7 @@ struct FS_BPENTRY {
 #define SARMODE0_ABRVCS_8k  (0x5 << 4)
 #define SARMODE0_ABRVCS_16k (0x6 << 4)
 #define SARMODE0_ABRVCS_32k (0x7 << 4)
-#define SARMODE0_ABRVCS_32  (0x9 << 4) /* The others are "8", this one really has to 
+#define SARMODE0_ABRVCS_32  (0x9 << 4) /* The others are "8", this one really has to
 					  be 9. Tell me you don't believe me. -- REW */
 
 #define SARMODE0_RXVCS_0    (0x0 << 8)
@@ -229,7 +229,7 @@ struct FS_BPENTRY {
 #define SARMODE0_RXVCS_16k  (0x5 << 8)
 #define SARMODE0_RXVCS_32k  (0x6 << 8)
 #define SARMODE0_RXVCS_64k  (0x7 << 8)
-#define SARMODE0_RXVCS_32   (0x8 << 8) 
+#define SARMODE0_RXVCS_32   (0x8 << 8)
 
 #define SARMODE0_CALSUP_1  (0x0 << 12)
 #define SARMODE0_CALSUP_2  (0x1 << 12)
@@ -382,7 +382,7 @@ struct fs_transmit_config {
 #define TC_FLAGS_TRANSPARENT_PAYLOAD (0x1 << 29)
 #define TC_FLAGS_TRANSPARENT_CELL    (0x2 << 29)
 #define TC_FLAGS_STREAMING (0x1 << 28)
-#define TC_FLAGS_PACKET    (0x0) 
+#define TC_FLAGS_PACKET    (0x0)
 #define TC_FLAGS_TYPE_ABR  (0x0 << 22)
 #define TC_FLAGS_TYPE_CBR  (0x1 << 22)
 #define TC_FLAGS_TYPE_VBR  (0x2 << 22)
@@ -455,7 +455,7 @@ struct fs_vcc {
 
 
 struct queue {
-	struct FS_QENTRY *sa, *ea;  
+	struct FS_QENTRY *sa, *ea;
 	int offset;
 };
 
@@ -498,7 +498,7 @@ struct fs_dev {
 #define FS50_CHANNEL_BITS  5
 #define FS50_NR_CHANNELS      (1 << FS50_CHANNEL_BITS)
 
-         
+
 #define FS_DEV(atm_dev) ((struct fs_dev *) (atm_dev)->dev_data)
 #define FS_VCC(atm_vcc) ((struct fs_vcc *) (atm_vcc)->dev_data)
 
@@ -508,7 +508,7 @@ struct fs_dev {
 
 #define IS_FS50(dev)  (dev->flags & FS_IS50)
 #define IS_FS155(dev) (dev->flags & FS_IS155)
- 
+
 /* Within limits this is user-configurable. */
 /* Note: Currently the sum (10 -> 1k channels) is hardcoded in the driver. */
 #define FS155_VPI_BITS 4
-- 
1.7.1.251.gf80a2


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

end of thread, other threads:[~2010-05-23 20:06 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-05-23 20:06 [PATCH 184/199] drivers/atm/firestream.h: Checkpatch cleanup Andrea Gelmini
2010-05-23 20:06 ` [PATCH 185/199] drivers/atm/idt77252_tables.h: " Andrea Gelmini
2010-05-23 20:06 ` [PATCH 186/199] drivers/atm/midway.h: " Andrea Gelmini
2010-05-23 20:06 ` [PATCH 187/199] drivers/atm/tonga.h: " Andrea Gelmini
2010-05-23 20:06 ` [PATCH 188/199] drivers/atm/uPD98401.h: " Andrea Gelmini
2010-05-23 20:06 ` [PATCH 189/199] drivers/atm/uPD98402.h: " Andrea Gelmini

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).