Index: kernel/generic/include/ddi/ddi.h
===================================================================
--- kernel/generic/include/ddi/ddi.h	(revision 7c3fb9bd77e4d2f6c10517a052e567f176fa91ee)
+++ kernel/generic/include/ddi/ddi.h	(revision a05ec6671002c451fceb01aa0ab3f71f004efb6d)
@@ -43,11 +43,15 @@
 /** Structure representing contiguous physical memory area. */
 typedef struct {
-	link_t link;      /**< Linked list link */
+	/** Linked list link */
+	link_t link;
 
-	uintptr_t pbase;  /**< Physical base of the area. */
-	pfn_t frames;     /**< Number of frames in the area. */
-	bool unpriv;      /**< Allow mapping by unprivileged tasks. */
-	bool mapped;      /**< Indicate whether the area is actually
-	                       mapped. */
+	/** Physical base of the area. */
+	uintptr_t pbase;
+	/** Number of frames in the area. */
+	pfn_t frames;
+	/** Allow mapping by unprivileged tasks. */
+	bool unpriv;
+	/** Indicate whether the area is actually mapped. */
+	bool mapped;
 } parea_t;
 
