staging:vt6655:device_cfg: Whitespace cleanups
authorJoe Perches <joe@perches.com>
Mon, 18 Mar 2013 17:44:46 +0000 (10:44 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 19 Mar 2013 00:21:35 +0000 (17:21 -0700)
Neatening only.
git diff -w shows no differences.

Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/vt6655/device_cfg.h

index 408edc27075fdf674643fb32cbf1276711553c37..145457ba768d15db53894dba6e288ec3a5560a9b 100644 (file)
@@ -34,9 +34,9 @@
 
 typedef
 struct _version {
-    unsigned char   major;
-    unsigned char   minor;
-    unsigned char   build;
+       unsigned char   major;
+       unsigned char   minor;
+       unsigned char   build;
 } version_t, *pversion_t;
 
 #define VID_TABLE_SIZE      64
@@ -76,20 +76,20 @@ struct _version {
 
 
 
-typedef enum  _chip_type{
-    VT3253=1
+typedef enum  _chip_type {
+       VT3253 = 1
 } CHIP_TYPE, *PCHIP_TYPE;
 
 
 
 #ifdef VIAWET_DEBUG
-#define ASSERT(x) { \
-    if (!(x)) { \
-        printk(KERN_ERR "assertion %s failed: file %s line %d\n", #x,\
-        __FUNCTION__, __LINE__);\
-        *(int*) 0=0;\
-    }\
-}
+#define ASSERT(x) {                                                    \
+               if (!(x)) {                                             \
+                       printk(KERN_ERR "assertion %s failed: file %s line %d\n", #x, \
+                              __FUNCTION__, __LINE__);                 \
+                       *(int *)0 = 0;                                  \
+               }                                                       \
+       }
 #define DBG_PORT80(value)                   outb(value, 0x80)
 #else
 #define ASSERT(x)