* Code cleanup:
  - remove trailing white space, trailing empty lines, C++ comments, etc.
  - split cmd_boot.c (separate cmd_bdinfo.c and cmd_load.c)

* Patches by Kenneth Johansson, 25 Jun 2003:
  - major rework of command structure
    (work done mostly by Michal Cendrowski and Joakim Kristiansen)
diff --git a/drivers/nicext.h b/drivers/nicext.h
index 0879dc2..4074972 100644
--- a/drivers/nicext.h
+++ b/drivers/nicext.h
@@ -49,35 +49,35 @@
     union
     {
 #ifdef __KERNEL__
-        /* cmd = NICE_CMD_SET_RX or NICE_CMD_GET_RX */
-        struct
-        {
-            void (*nrqus1_rx)( struct sk_buff*, void* );
-            void* nrqus1_ctx;
-        } nrqu_nrqus1;
+	/* cmd = NICE_CMD_SET_RX or NICE_CMD_GET_RX */
+	struct
+	{
+	    void (*nrqus1_rx)( struct sk_buff*, void* );
+	    void* nrqus1_ctx;
+	} nrqu_nrqus1;
 
-        /* cmd = NICE_CMD_QUERY_SUPPORT */
-        struct
-        {
-            __u32 nrqus2_magic;
-            __u32 nrqus2_support_rx:1;
-            __u32 nrqus2_support_vlan:1;
-            __u32 nrqus2_support_get_speed:1;
-        } nrqu_nrqus2;
+	/* cmd = NICE_CMD_QUERY_SUPPORT */
+	struct
+	{
+	    __u32 nrqus2_magic;
+	    __u32 nrqus2_support_rx:1;
+	    __u32 nrqus2_support_vlan:1;
+	    __u32 nrqus2_support_get_speed:1;
+	} nrqu_nrqus2;
 #endif
 
-        /* cmd = NICE_CMD_GET_SPEED */
-        struct
-        {
-            unsigned int nrqus3_speed; /* 0 if link is down, */
-                                       /* otherwise speed in Mbps */
-        } nrqu_nrqus3;
+	/* cmd = NICE_CMD_GET_SPEED */
+	struct
+	{
+	    unsigned int nrqus3_speed; /* 0 if link is down, */
+				       /* otherwise speed in Mbps */
+	} nrqu_nrqus3;
 
-        /* cmd = NICE_CMD_BLINK_LED */
-        struct
-        {
-            unsigned int nrqus4_blink_time; /* blink duration in seconds */
-        } nrqu_nrqus4;
+	/* cmd = NICE_CMD_BLINK_LED */
+	struct
+	{
+	    unsigned int nrqus4_blink_time; /* blink duration in seconds */
+	} nrqu_nrqus4;
 
     } nrq_nrqu;
 };
@@ -107,4 +107,3 @@
 #define NICE_CMD_BLINK_LED              0x00000005
 
 #endif  /* _nicext_h_ */
-