staging: dgnc: driver.h: removes trailing whitespace

This patch removes trailing whitespace in
the driver.h file.

Signed-off-by: Lidza Louina <lidza.louina@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Lidza Louina 2013-08-21 11:08:03 -04:00 committed by Greg Kroah-Hartman
parent 817b784716
commit 4c1c56e62c
1 changed files with 9 additions and 9 deletions

View File

@ -32,7 +32,7 @@
#include <linux/interrupt.h> /* For irqreturn_t type */ #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 "digi.h" /* Digi specific ioctl header */
#include "dgnc_kcompat.h" /* Kernel 2.4/2.6 compat includes */ #include "dgnc_kcompat.h" /* Kernel 2.4/2.6 compat includes */
#include "dgnc_sysfs.h" /* Support for SYSFS */ #include "dgnc_sysfs.h" /* Support for SYSFS */
@ -54,7 +54,7 @@
*/ */
#define PROCSTR "dgnc" /* /proc entries */ #define PROCSTR "dgnc" /* /proc entries */
#define DEVSTR "/dev/dg/dgnc" /* /dev entries */ #define DEVSTR "/dev/dg/dgnc" /* /dev entries */
#define DRVSTR "dgnc" /* Driver name string #define DRVSTR "dgnc" /* Driver name string
* displayed by APR */ * displayed by APR */
#define APR(args) do { PRINTF_TO_KMEM(args); printk(DRVSTR": "); printk args; \ #define APR(args) do { PRINTF_TO_KMEM(args); printk(DRVSTR": "); printk args; \
} while (0) } while (0)
@ -111,7 +111,7 @@
#endif #endif
#if defined TRC_TO_KMEM #if defined TRC_TO_KMEM
#define PRINTF_TO_KMEM(args) dgnc_tracef args #define PRINTF_TO_KMEM(args) dgnc_tracef args
#else //!defined TRC_TO_KMEM #else //!defined TRC_TO_KMEM
#define PRINTF_TO_KMEM(args) #define PRINTF_TO_KMEM(args)
#endif #endif
@ -273,7 +273,7 @@ struct board_ops {
void (*send_immediate_char) (struct channel_t *ch, unsigned char); void (*send_immediate_char) (struct channel_t *ch, unsigned char);
}; };
/************************************************************************ /************************************************************************
* Device flag definitions for bd_flags. * Device flag definitions for bd_flags.
************************************************************************/ ************************************************************************/
#define BD_IS_PCI_EXPRESS 0x0001 /* Is a PCI Express board */ #define BD_IS_PCI_EXPRESS 0x0001 /* Is a PCI Express board */
@ -369,7 +369,7 @@ struct board_t
}; };
/************************************************************************ /************************************************************************
* Unit flag definitions for un_flags. * Unit flag definitions for un_flags.
************************************************************************/ ************************************************************************/
#define UN_ISOPEN 0x0001 /* Device is open */ #define UN_ISOPEN 0x0001 /* Device is open */
@ -389,7 +389,7 @@ struct board_t
struct device; struct device;
/************************************************************************ /************************************************************************
* Structure for terminal or printer unit. * Structure for terminal or printer unit.
************************************************************************/ ************************************************************************/
struct un_t { struct un_t {
int magic; /* Unit Magic Number. */ int magic; /* Unit Magic Number. */
@ -405,7 +405,7 @@ struct un_t {
}; };
/************************************************************************ /************************************************************************
* Device flag definitions for ch_flags. * Device flag definitions for ch_flags.
************************************************************************/ ************************************************************************/
#define CH_PRON 0x0001 /* Printer on string */ #define CH_PRON 0x0001 /* Printer on string */
@ -425,7 +425,7 @@ struct un_t {
#define CH_LOOPBACK 0x2000 /* Channel is in lookback mode */ #define CH_LOOPBACK 0x2000 /* Channel is in lookback mode */
#define CH_FLIPBUF_IN_USE 0x4000 /* Channel's flipbuf is in use */ #define CH_FLIPBUF_IN_USE 0x4000 /* Channel's flipbuf is in use */
#define CH_BAUD0 0x08000 /* Used for checking B0 transitions */ #define CH_BAUD0 0x08000 /* Used for checking B0 transitions */
#define CH_FORCED_STOP 0x20000 /* Output is forcibly stopped */ #define CH_FORCED_STOP 0x20000 /* Output is forcibly stopped */
#define CH_FORCED_STOPI 0x40000 /* Input is forcibly stopped */ #define CH_FORCED_STOPI 0x40000 /* Input is forcibly stopped */
/* /*
@ -445,7 +445,7 @@ struct un_t {
#define WQUEUESIZE (WQUEUEMASK + 1) #define WQUEUESIZE (WQUEUEMASK + 1)
/************************************************************************ /************************************************************************
* Channel information structure. * Channel information structure.
************************************************************************/ ************************************************************************/
struct channel_t { struct channel_t {