staging: ozwpan: Add a blank line between functions & declarations.

This patch adds a blank line between global declarations &
functions for readability.

Signed-off-by: Rupesh Gujare <rupesh.gujare@atmel.com>
Reviewed-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
diff --git a/drivers/staging/ozwpan/ozproto.c b/drivers/staging/ozwpan/ozproto.c
index 7072f53..8c2200b 100644
--- a/drivers/staging/ozwpan/ozproto.c
+++ b/drivers/staging/ozwpan/ozproto.c
@@ -22,6 +22,7 @@
 #include <asm/unaligned.h>
 #include <linux/uaccess.h>
 #include <net/psnap.h>
+
 /*------------------------------------------------------------------------------
  */
 #define OZ_CF_CONN_SUCCESS	1
@@ -51,6 +52,7 @@
 static u8 g_session_id;
 static u16 g_apps = 0x1;
 static int g_processing_rx;
+
 /*------------------------------------------------------------------------------
  * Context: softirq-serialized
  */
@@ -64,6 +66,7 @@
 	}
 	return g_session_id;
 }
+
 /*------------------------------------------------------------------------------
  * Context: softirq-serialized
  */
@@ -109,6 +112,7 @@
 	dev_queue_xmit(skb);
 	return;
 }
+
 /*------------------------------------------------------------------------------
  * Context: softirq-serialized
  */
@@ -134,6 +138,7 @@
 	}
 	oz_dbg(ON, "Keepalive = %lu mSec\n", pd->keep_alive);
 }
+
 /*------------------------------------------------------------------------------
  * Context: softirq-serialized
  */
@@ -150,6 +155,7 @@
 	}
 	oz_dbg(ON, "Presleep time = %lu mSec\n", pd->presleep);
 }
+
 /*------------------------------------------------------------------------------
  * Context: softirq-serialized
  */
@@ -284,6 +290,7 @@
 		oz_pd_destroy(free_pd);
 	return pd;
 }
+
 /*------------------------------------------------------------------------------
  * Context: softirq-serialized
  */
@@ -315,6 +322,7 @@
 	if (found)
 		kfree(f2);
 }
+
 /*------------------------------------------------------------------------------
  * Context: softirq-serialized
  */
@@ -436,6 +444,7 @@
 		oz_pd_put(pd);
 	consume_skb(skb);
 }
+
 /*------------------------------------------------------------------------------
  * Context: process
  */
@@ -473,6 +482,7 @@
 	spin_unlock_bh(&g_polling_lock);
 	oz_dbg(ON, "Protocol stopped\n");
 }
+
 /*------------------------------------------------------------------------------
  * Context: softirq
  */
@@ -489,6 +499,7 @@
 		oz_pd_heartbeat(pd, apps);
 
 }
+
 /*------------------------------------------------------------------------------
  * Context: softirq
  */
@@ -509,6 +520,7 @@
 		break;
 	}
 }
+
 /*------------------------------------------------------------------------------
  * Context: Interrupt
  */
@@ -522,6 +534,7 @@
 	tasklet_schedule(&pd->heartbeat_tasklet);
 	return HRTIMER_RESTART;
 }
+
 /*------------------------------------------------------------------------------
  * Context: Interrupt
  */
@@ -533,6 +546,7 @@
 	tasklet_schedule(&pd->timeout_tasklet);
 	return HRTIMER_NORESTART;
 }
+
 /*------------------------------------------------------------------------------
  * Context: softirq or process
  */
@@ -563,6 +577,7 @@
 	}
 	spin_unlock_bh(&g_polling_lock);
 }
+
 /*------------------------------------------------------------------------------
  * Context: softirq or process
  */
@@ -571,6 +586,7 @@
 	oz_timer_add(pd, OZ_TIMER_HEARTBEAT, pd->pulse_period > 0 ?
 					pd->pulse_period : OZ_QUANTUM);
 }
+
 /*------------------------------------------------------------------------------
  * Context: softirq or process
  */
@@ -591,6 +607,7 @@
 	spin_unlock_bh(&g_polling_lock);
 	return NULL;
 }
+
 /*------------------------------------------------------------------------------
  * Context: process
  */
@@ -605,6 +622,7 @@
 		spin_unlock_bh(&g_polling_lock);
 	}
 }
+
 /*------------------------------------------------------------------------------
  * Context: softirq
  */
@@ -639,6 +657,7 @@
 	}
 	return 0;
 }
+
 /*------------------------------------------------------------------------------
  * Context: process
  */
@@ -672,6 +691,7 @@
 		}
 	}
 }
+
 /*------------------------------------------------------------------------------
  * Context: process
  */
@@ -696,6 +716,7 @@
 		oz_pd_put(pd);
 	}
 }
+
 /*------------------------------------------------------------------------------
  * Context: process
  */
@@ -724,6 +745,7 @@
 		kfree(binding);
 	}
 }
+
 /*------------------------------------------------------------------------------
  * Context: process
  */
@@ -738,6 +760,7 @@
 	*dname = 0;
 	return s;
 }
+
 /*------------------------------------------------------------------------------
  * Context: process
  */
@@ -756,6 +779,7 @@
 	}
 	return 0;
 }
+
 /*------------------------------------------------------------------------------
  * Context: process
  */
@@ -775,12 +799,14 @@
 	spin_unlock_bh(&g_polling_lock);
 	return count;
 }
+
 /*------------------------------------------------------------------------------
 */
 void oz_polling_lock_bh(void)
 {
 	spin_lock_bh(&g_polling_lock);
 }
+
 /*------------------------------------------------------------------------------
 */
 void oz_polling_unlock_bh(void)