Index: kernel/generic/src/sysinfo/stats.c
===================================================================
--- kernel/generic/src/sysinfo/stats.c	(revision 11b285d87da6e1d6a1d65134694b4f971f3cdebc)
+++ kernel/generic/src/sysinfo/stats.c	(revision 774aa33295605fdbbdcdc06516322c0665399f63)
@@ -222,5 +222,5 @@
 }
 
-/* Produce task statistics
+/** Produce task statistics
  *
  * Summarize task information into task statistics.
@@ -324,5 +324,5 @@
 }
 
-/* Produce thread statistics
+/** Produce thread statistics
  *
  * Summarize thread information into thread statistics.
Index: kernel/generic/src/sysinfo/sysinfo.c
===================================================================
--- kernel/generic/src/sysinfo/sysinfo.c	(revision 11b285d87da6e1d6a1d65134694b4f971f3cdebc)
+++ kernel/generic/src/sysinfo/sysinfo.c	(revision 774aa33295605fdbbdcdc06516322c0665399f63)
@@ -232,5 +232,6 @@
 			i++;
 
-		/* Check for perfect name and path match
+		/*
+		 * Check for perfect name and path match
 		 * -> item is already present.
 		 */
@@ -251,5 +252,6 @@
 				    &(cur->subtree.table));
 			default:
-				/* Subtree items handled by a function, this
+				/*
+				 * Subtree items handled by a function, this
 				 * cannot be overriden by a constant item.
 				 */
@@ -258,5 +260,6 @@
 		}
 
-		/* No match and no more siblings to check
+		/*
+		 * No match and no more siblings to check
 		 * -> create a new sibling item.
 		 */
@@ -457,6 +460,8 @@
 	sysinfo_item_t *item = sysinfo_create_path(name, root);
 
-	/* Change the type of the subtree only if it is not already
-	   a fixed subtree */
+	/*
+	 * Change the type of the subtree only if it is not already
+	 * a fixed subtree
+	 */
 	if ((item != NULL) && (item->subtree_type != SYSINFO_SUBTREE_TABLE)) {
 		item->subtree_type = SYSINFO_SUBTREE_FUNCTION;
@@ -559,6 +564,8 @@
 void sysinfo_dump(sysinfo_item_t *root)
 {
-	/* Avoid other functions to mess with sysinfo
-	   while we are dumping it */
+	/*
+	 * Avoid other functions to mess with sysinfo
+	 * while we are dumping it
+	 */
 	mutex_lock(&sysinfo_lock);
 
