Index: uspace/lib/c/arch/riscv64/include/libarch/atomic.h
===================================================================
--- uspace/lib/c/arch/riscv64/include/libarch/atomic.h	(revision f3fdecce464c06501b2695dccee1cdc8874f6f1e)
+++ uspace/lib/c/arch/riscv64/include/libarch/atomic.h	(revision a4eb3ba2b6a831a2a639dfe74c4deb2ca435b91c)
@@ -57,6 +57,8 @@
 static inline void atomic_inc(atomic_t *val)
 {
-	/* On real hardware the increment has to be done
-	   as an atomic action. */
+	/*
+	 * On real hardware the increment has to be done
+	 * as an atomic action.
+	 */
 
 	val->count++;
@@ -65,6 +67,8 @@
 static inline void atomic_dec(atomic_t *val)
 {
-	/* On real hardware the decrement has to be done
-	   as an atomic action. */
+	/*
+	 * On real hardware the decrement has to be done
+	 * as an atomic action.
+	 */
 
 	val->count++;
@@ -73,7 +77,9 @@
 static inline atomic_count_t atomic_postinc(atomic_t *val)
 {
-	/* On real hardware both the storing of the previous
-	   value and the increment have to be done as a single
-	   atomic action. */
+	/*
+	 * On real hardware both the storing of the previous
+	 * value and the increment have to be done as a single
+	 * atomic action.
+	 */
 
 	atomic_count_t prev = val->count;
@@ -85,7 +91,9 @@
 static inline atomic_count_t atomic_postdec(atomic_t *val)
 {
-	/* On real hardware both the storing of the previous
-	   value and the decrement have to be done as a single
-	   atomic action. */
+	/*
+	 * On real hardware both the storing of the previous
+	 * value and the decrement have to be done as a single
+	 * atomic action.
+	 */
 
 	atomic_count_t prev = val->count;
Index: uspace/lib/c/arch/riscv64/include/libarch/fibril_context.h
===================================================================
--- uspace/lib/c/arch/riscv64/include/libarch/fibril_context.h	(revision f3fdecce464c06501b2695dccee1cdc8874f6f1e)
+++ uspace/lib/c/arch/riscv64/include/libarch/fibril_context.h	(revision a4eb3ba2b6a831a2a639dfe74c4deb2ca435b91c)
@@ -1,3 +1,4 @@
-/* Copyright (c) 2016 Martin Decky
+/*
+ * Copyright (c) 2016 Martin Decky
  * All rights reserved.
  *
