Index: kernel/generic/include/ddi/ddi.h
===================================================================
--- kernel/generic/include/ddi/ddi.h	(revision 1433ecda9b732f3f185f902feb26826ec2496e03)
+++ kernel/generic/include/ddi/ddi.h	(revision 29c3c722f633a767a2e38e4526412ec428d68cd3)
@@ -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;
 
