Index: kernel/arch/abs32le/include/arch/asm.h
===================================================================
--- kernel/arch/abs32le/include/arch/asm.h	(revision 18b6a8849d630cc3bca153fb21bd225eebb16f4c)
+++ kernel/arch/abs32le/include/arch/asm.h	(revision 774aa33295605fdbbdcdc06516322c0665399f63)
@@ -46,8 +46,10 @@
 NO_TRACE static inline __attribute__((noreturn)) void cpu_halt(void)
 {
-	/* On real hardware this should stop processing further
-	   instructions on the CPU (and possibly putting it into
-	   low-power mode) without any possibility of exitting
-	   this function. */
+	/*
+	 * On real hardware this should stop processing further
+	 * instructions on the CPU (and possibly putting it into
+	 * low-power mode) without any possibility of exitting
+	 * this function.
+	 */
 
 	while (true)
@@ -57,8 +59,10 @@
 NO_TRACE static inline void cpu_sleep(void)
 {
-	/* On real hardware this should put the CPU into low-power
-	   mode. However, the CPU is free to continue processing
-	   futher instructions any time. The CPU also wakes up
-	   upon an interrupt. */
+	/*
+	 * On real hardware this should put the CPU into low-power
+	 * mode. However, the CPU is free to continue processing
+	 * futher instructions any time. The CPU also wakes up
+	 * upon an interrupt.
+	 */
 }
 
Index: kernel/arch/abs32le/include/arch/atomic.h
===================================================================
--- kernel/arch/abs32le/include/arch/atomic.h	(revision 18b6a8849d630cc3bca153fb21bd225eebb16f4c)
+++ kernel/arch/abs32le/include/arch/atomic.h	(revision 774aa33295605fdbbdcdc06516322c0665399f63)
@@ -47,6 +47,8 @@
     REQUIRES(val->count < ATOMIC_COUNT_MAX)
 {
-	/* 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++;
@@ -58,6 +60,8 @@
     REQUIRES(val->count > ATOMIC_COUNT_MIN)
 {
-	/* 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--;
@@ -69,7 +73,9 @@
     REQUIRES(val->count < ATOMIC_COUNT_MAX)
 {
-	/* 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;
@@ -84,7 +90,9 @@
     REQUIRES(val->count > ATOMIC_COUNT_MIN)
 {
-	/* 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;
@@ -101,7 +109,9 @@
     REQUIRES_EXTENT_MUTABLE(val)
 {
-	/* On real hardware the retrieving of the original
-	   value and storing 1 have to be done as a single
-	   atomic action. */
+	/*
+	 * On real hardware the retrieving of the original
+	 * value and storing 1 have to be done as a single
+	 * atomic action.
+	 */
 
 	atomic_count_t prev = val->count;
Index: kernel/arch/abs32le/include/arch/istate.h
===================================================================
--- kernel/arch/abs32le/include/arch/istate.h	(revision 18b6a8849d630cc3bca153fb21bd225eebb16f4c)
+++ kernel/arch/abs32le/include/arch/istate.h	(revision 774aa33295605fdbbdcdc06516322c0665399f63)
@@ -65,6 +65,8 @@
     REQUIRES_EXTENT_MUTABLE(istate)
 {
-	/* On real hardware this checks whether the interrupted
-	   context originated from user space. */
+	/*
+	 * On real hardware this checks whether the interrupted
+	 * context originated from user space.
+	 */
 
 	return !(istate->ip & UINT32_C(0x80000000));
