master/debug.c
changeset 2589 2b9c78543663
parent 1921 d9cf40facbc4
--- a/master/debug.c	Thu Sep 06 14:21:02 2012 +0200
+++ b/master/debug.c	Mon Nov 03 15:20:05 2014 +0100
@@ -200,6 +200,8 @@
  *****************************************************************************/
 
 /** Opens the virtual network device.
+ *
+ * \return Always zero (success).
  */
 int ec_dbgdev_open(
         struct net_device *dev /**< debug net_device */
@@ -215,6 +217,8 @@
 /*****************************************************************************/
 
 /** Stops the virtual network device.
+ *
+ * \return Always zero (success).
  */
 int ec_dbgdev_stop(
         struct net_device *dev /**< debug net_device */
@@ -230,6 +234,8 @@
 /*****************************************************************************/
 
 /** Transmits data via the virtual network device.
+ *
+ * \return Always zero (success).
  */
 int ec_dbgdev_tx(
         struct sk_buff *skb, /**< transmit socket buffer */
@@ -246,6 +252,8 @@
 /*****************************************************************************/
 
 /** Gets statistics about the virtual network device.
+ *
+ * \return Statistics.
  */
 struct net_device_stats *ec_dbgdev_stats(
         struct net_device *dev /**< debug net_device */