Fix comments to make lines less than 80 characters by moving them,
breaking the lines or making them neater.

Signed-off-by: Giedrius Statkevičius <giedrius.statkevic...@gmail.com>
---
 drivers/staging/dgnc/dgnc_driver.h | 55 +++++++++++++++++++++++++-------------
 1 file changed, 36 insertions(+), 19 deletions(-)

diff --git a/drivers/staging/dgnc/dgnc_driver.h 
b/drivers/staging/dgnc/dgnc_driver.h
index 734bdc2..ebb9b85 100644
--- a/drivers/staging/dgnc/dgnc_driver.h
+++ b/drivers/staging/dgnc/dgnc_driver.h
@@ -31,7 +31,7 @@
 #include <linux/tty.h>   /* To pick up the various tty structs/defines */
 #include <linux/interrupt.h>   /* For irqreturn_t type */
 
-#include "dgnc_types.h"                /* Additional types needed by the Digi 
header files */
+#include "dgnc_types.h"        /* Additional types needed by the Digi header 
files */
 #include "digi.h"              /* Digi specific ioctl header */
 #include "dgnc_kcompat.h"      /* Kernel 2.4/2.6 compat includes */
 #include "dgnc_sysfs.h"                /* Support for SYSFS */
@@ -68,7 +68,10 @@
 #define PORT_NUM(dev)  ((dev) & 0x7f)
 #define IS_PRINT(dev)  (((dev) & 0xff) >= 0x80)
 
-/* MAX number of stop characters we will send when our read queue is getting 
full */
+/*
+ * MAX number of stop characters we will send
+ * when our read queue is getting full
+ */
 #define MAX_STOPS_SENT 5
 
 /* 4 extra for alignment play space */
@@ -170,15 +173,20 @@ struct dgnc_board {
        unsigned char   rev;            /* PCI revision ID */
        uint            pci_bus;        /* PCI bus value */
        uint            pci_slot;       /* PCI slot value */
-       uint            maxports;       /* MAX ports this board can handle */
+       uint            maxports;       /*
+                                        * MAX ports this board
+                                        * can handle
+                                        */
        unsigned char   dvid;           /* Board specific device id */
        unsigned char   vpd[128];       /* VPD of board, if found */
        unsigned char   serial_num[20]; /* Serial number of board, if found in 
VPD */
 
        spinlock_t      bd_lock;        /* Used to protect board */
 
-       spinlock_t      bd_intr_lock;   /* Used to protect the poller tasklet 
and
-                                        * the interrupt routine from each 
other.
+       spinlock_t      bd_intr_lock;   /*
+                                        * Used to protect the poller tasklet
+                                        * and the interrupt routine from
+                                        * each other.
                                         */
 
        uint            state;          /* State of card. */
@@ -197,14 +205,14 @@ struct dgnc_board {
        ulong           membase;        /* Start of base memory of the card */
        ulong           membase_end;    /* End of base memory of the card */
 
-       u8 __iomem              *re_map_membase;/* Remapped memory of the card 
*/
+       u8 __iomem      *re_map_membase; /* Remapped memory of the card */
 
        ulong           iobase;         /* Start of io base of the card */
        ulong           iobase_end;     /* End of io base of the card */
 
        uint            bd_uart_offset; /* Space between each UART */
 
-       struct channel_t *channels[MAXPORTS]; /* array of pointers to our 
channels. */
+       struct channel_t *channels[MAXPORTS]; /* Pointers to channels */
 
        struct tty_driver       SerialDriver;
        char            SerialName[200];
@@ -219,10 +227,10 @@ struct dgnc_board {
 
        uint            TtyRefCnt;
 
-       char            *flipbuf;       /* Our flip buffer, alloced if board is 
found */
+       char            *flipbuf; /* Our flip buffer, alloced if board is found 
*/
 
-       u16             dpatype;        /* The board "type", as defined by DPA 
*/
-       u16             dpastatus;      /* The board "status", as defined by 
DPA */
+       u16             dpatype; /* The board "type", as defined by DPA */
+       u16             dpastatus; /* The board "status", as defined by DPA */
 
        /*
         *      Mgmt data.
@@ -315,7 +323,7 @@ struct un_t {
  ************************************************************************/
 struct channel_t {
        int magic;                      /* Channel Magic Number         */
-       struct dgnc_board       *ch_bd;         /* Board structure pointer      
*/
+       struct dgnc_board       *ch_bd; /* Board structure pointer      */
        struct digi_t   ch_digi;        /* Transparent Print structure  */
        struct un_t     ch_tun;         /* Terminal unit info      */
        struct un_t     ch_pun;         /* Printer unit info        */
@@ -327,7 +335,10 @@ struct channel_t {
        uint            ch_open_count;  /* open count                   */
        uint            ch_flags;       /* Channel flags                */
 
-       ulong           ch_close_delay; /* How long we should drop RTS/DTR for 
*/
+       ulong           ch_close_delay; /*
+                                        * How long we should drop
+                                        * RTS/DTR for
+                                        */
 
        ulong           ch_cpstime;     /* Time for CPS calculations    */
 
@@ -343,11 +354,11 @@ struct channel_t {
 
        uint            ch_wopen;       /* Waiting for open process cnt */
 
-       unsigned char           ch_mostat;      /* FEP output modem status      
*/
-       unsigned char           ch_mistat;      /* FEP input modem status       
*/
+       unsigned char           ch_mostat; /* FEP output modem status      */
+       unsigned char           ch_mistat; /* FEP input modem status       */
 
-       struct neo_uart_struct __iomem *ch_neo_uart;    /* Pointer to the 
"mapped" UART struct */
-       struct cls_uart_struct __iomem *ch_cls_uart;    /* Pointer to the 
"mapped" UART struct */
+       struct neo_uart_struct __iomem *ch_neo_uart; /* Pointer to the "mapped" 
UART struct */
+       struct cls_uart_struct __iomem *ch_cls_uart; /* Pointer to the "mapped" 
UART struct */
 
        unsigned char   ch_cached_lsr;  /* Cached value of the LSR register */
 
@@ -371,9 +382,12 @@ struct channel_t {
 
        unsigned char           ch_r_watermark; /* Receive Watermark */
 
-       ulong           ch_stop_sending_break;  /* Time we should STOP sending 
a break */
+       ulong           ch_stop_sending_break; /*
+                                               * Time we should STOP
+                                               * sending a break
+                                               */
 
-       uint            ch_stops_sent;  /* How many times I have sent a stop 
character
+       uint            ch_stops_sent;  /* How many times I have sent a stop 
char
                                         * to try to stop the other guy sending.
                                         */
        ulong           ch_err_parity;  /* Count of parity errors on channel */
@@ -402,7 +416,10 @@ extern uint                dgnc_Major;             /* Our 
driver/mgmt major */
 extern int             dgnc_poll_tick;         /* Poll interval - 20 ms */
 extern spinlock_t      dgnc_global_lock;       /* Driver global spinlock */
 extern uint            dgnc_NumBoards;         /* Total number of boards */
-extern struct dgnc_board       *dgnc_Board[MAXBOARDS]; /* Array of board 
structs */
+extern struct dgnc_board       *dgnc_Board[MAXBOARDS]; /*
+                                                        * Array of board
+                                                        * structs
+                                                        */
 extern char            *dgnc_state_text[];     /* Array of state text */
 
 #endif
-- 
2.3.2

_______________________________________________
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Reply via email to