Index: kernel/generic/src/lib/str.c
===================================================================
--- kernel/generic/src/lib/str.c	(revision 11b285d87da6e1d6a1d65134694b4f971f3cdebc)
+++ kernel/generic/src/lib/str.c	(revision 29c3c722f633a767a2e38e4526412ec428d68cd3)
@@ -225,6 +225,8 @@
 		return EINVAL;
 
-	/* Unsigned version of ch (bit operations should only be done
-	   on unsigned types). */
+	/*
+	 * Unsigned version of ch (bit operations should only be done
+	 * on unsigned types).
+	 */
 	uint32_t cc = (uint32_t) ch;
 
@@ -735,5 +737,5 @@
  * @param ch      Character to insert to.
  * @param pos     Character index where to insert.
- @ @param max_pos Characters in the buffer.
+ * @param max_pos Characters in the buffer.
  *
  * @return True if the insertion was sucessful, false if the position
@@ -934,6 +936,8 @@
 		return EINVAL;
 
-	/* Check whether we are at the end of
-	   the string in strict mode */
+	/*
+	 * Check whether we are at the end of
+	 * the string in strict mode
+	 */
 	if ((strict) && (*lendptr != 0))
 		return EINVAL;
Index: kernel/generic/src/lib/str_error.c
===================================================================
--- kernel/generic/src/lib/str_error.c	(revision 11b285d87da6e1d6a1d65134694b4f971f3cdebc)
+++ kernel/generic/src/lib/str_error.c	(revision 29c3c722f633a767a2e38e4526412ec428d68cd3)
@@ -31,5 +31,6 @@
 #include <str.h>
 
-/* The arrays below are automatically generated from the same file that
+/*
+ * The arrays below are automatically generated from the same file that
  * errno.h constants are generated from. Triple-include of the same list
  * with redefinitions of __errno() macro are used to ensure that the
@@ -61,5 +62,6 @@
 static int find_errno(errno_t e)
 {
-	/* Just a dumb linear search.
+	/*
+	 * Just a dumb linear search.
 	 * There too few entries to warrant anything smarter.
 	 */
