Index: kernel/generic/src/adt/avl.c
===================================================================
--- kernel/generic/src/adt/avl.c	(revision 3cfe2b8dd986aa1b72746ca06ec25e4e5cb45284)
+++ kernel/generic/src/adt/avl.c	(revision 631281dedb2b080d5b5af149d4e4b05369d66c34)
@@ -81,5 +81,4 @@
 	return NULL;
 }
-
 
 /** Find the node with the smallest key in an AVL tree.
@@ -660,5 +659,4 @@
 }
 
-
 /** Delete a node with the smallest key from the AVL tree.
  *
@@ -730,3 +728,2 @@
 /** @}
  */
-
Index: kernel/generic/src/adt/cht.c
===================================================================
--- kernel/generic/src/adt/cht.c	(revision 3cfe2b8dd986aa1b72746ca06ec25e4e5cb45284)
+++ kernel/generic/src/adt/cht.c	(revision 631281dedb2b080d5b5af149d4e4b05369d66c34)
@@ -26,5 +26,4 @@
  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
-
 
 /** @addtogroup genericadt
@@ -287,5 +286,4 @@
  */
 
-
 #include <adt/cht.h>
 #include <adt/hash.h>
@@ -396,5 +394,4 @@
 } wnd_t;
 
-
 /* Sentinel node used by all buckets. Stores the greatest possible hash value.*/
 static const cht_link_t sentinel = {
@@ -403,5 +400,4 @@
 	.hash = -1
 };
-
 
 static size_t size_to_order(size_t bucket_cnt, size_t min_order);
@@ -1683,5 +1679,4 @@
 }
 
-
 #if 0
 static void move_head(marked_ptr_t *psrc_head, marked_ptr_t *pdest_head)
@@ -2710,5 +2705,4 @@
 }
 
-
 /** @}
  */
Index: kernel/generic/src/adt/hash_table.c
===================================================================
--- kernel/generic/src/adt/hash_table.c	(revision 3cfe2b8dd986aa1b72746ca06ec25e4e5cb45284)
+++ kernel/generic/src/adt/hash_table.c	(revision 631281dedb2b080d5b5af149d4e4b05369d66c34)
@@ -60,5 +60,4 @@
 #define HT_MAX_LOAD     2
 
-
 static size_t round_up_size(size_t);
 static bool alloc_table(size_t, list_t **);
@@ -73,5 +72,4 @@
 	/* no-op */
 }
-
 
 /** Create chained hash table.
@@ -205,5 +203,4 @@
 }
 
-
 /** Insert item into a hash table if not already present.
  *
@@ -412,5 +409,4 @@
 }
 
-
 /** Shrinks the table if the table is only sparely populated. */
 static inline void shrink_if_needed(hash_table_t *h)
@@ -472,5 +468,4 @@
 }
 
-
 /** @}
  */
