Staging: et131x: kill MP_ERR_COUNTERS which is unused
[safe/jmp/linux-2.6] / drivers / staging / rar / rar_driver.h
index 3690f98..4172fbf 100644 (file)
@@ -1,7 +1,7 @@
 /* === RAR Physical Addresses === */
 struct RAR_address_struct {
-        u32 low;
-        u32 high;
+       u32 low;
+       u32 high;
 };
 
 /* The get_rar_address function is used by other device drivers
@@ -19,10 +19,10 @@ struct RAR_address_struct {
  * The function returns a 0 upon success or a -1 if there is no RAR
  * facility on this system.
  */
-int get_rar_address(int rar_index,struct RAR_address_struct *addresses);
+int get_rar_address(int rar_index, struct RAR_address_struct *addresses);
 
 
-/* The lock_rar function is ued by other device drivers to lock an RAR.
+/* The lock_rar function is used by other device drivers to lock an RAR.
  * once an RAR is locked, it stays locked until the next system reboot.
  * The function takes one parameter:
  *
@@ -49,51 +49,41 @@ int lock_rar(int rar_index);
 
 /* debug macro without paramaters */
 #define DEBUG_PRINT_0(DEBUG_LEVEL , info) \
-do \
-{ \
-  if(DEBUG_LEVEL) \
-  { \
-    printk(KERN_WARNING info); \
-  } \
-}while(0)
+do { \
+       if (DEBUG_LEVEL) { \
+               printk(KERN_WARNING info); \
+       } \
+} while (0)
 
 /* debug macro with 1 paramater */
 #define DEBUG_PRINT_1(DEBUG_LEVEL , info , param1) \
-do \
-{ \
-  if(DEBUG_LEVEL) \
-  { \
-    printk(KERN_WARNING info , param1); \
-  } \
-}while(0)
+do { \
+       if (DEBUG_LEVEL) { \
+               printk(KERN_WARNING info , param1); \
+       } \
+} while (0)
 
 /* debug macro with 2 paramaters */
 #define DEBUG_PRINT_2(DEBUG_LEVEL , info , param1, param2) \
-do \
-{ \
-  if(DEBUG_LEVEL) \
-  { \
-    printk(KERN_WARNING info , param1, param2); \
-  } \
-}while(0)
+do { \
+       if (DEBUG_LEVEL) { \
+               printk(KERN_WARNING info , param1, param2); \
+       } \
+} while (0)
 
 /* debug macro with 3 paramaters */
 #define DEBUG_PRINT_3(DEBUG_LEVEL , info , param1, param2 , param3) \
-do \
-{ \
-  if(DEBUG_LEVEL) \
-  { \
-    printk(KERN_WARNING info , param1, param2 , param3); \
-  } \
-}while(0)
+do { \
+       if (DEBUG_LEVEL) { \
+               printk(KERN_WARNING info , param1, param2 , param3); \
+       } \
+} while (0)
 
 /* debug macro with 4 paramaters */
 #define DEBUG_PRINT_4(DEBUG_LEVEL , info , param1, param2 , param3 , param4) \
-do \
-{ \
-  if(DEBUG_LEVEL) \
-  { \
-    printk(KERN_WARNING info , param1, param2 , param3 , param4); \
-  } \
-}while(0)
+do { \
+       if (DEBUG_LEVEL) { \
+               printk(KERN_WARNING info , param1, param2 , param3 , param4); \
+       } \
+} while (0)