Index: kernel/generic/include/mm/buddy.h
===================================================================
--- kernel/generic/include/mm/buddy.h	(revision aaa708417a0f188e49a5241eb52926e3cefcf61f)
+++ kernel/generic/include/mm/buddy.h	(revision 2ec725f323a83fee85ad7c1f75b8164d24daca8a)
@@ -67,5 +67,4 @@
 	/** Find parent of block that has given order  */
 	link_t *(* find_block)(struct buddy_system *, link_t *, uint8_t);
-	void (* print_id)(struct buddy_system *, link_t *);
 } buddy_system_operations_t;
 
@@ -79,12 +78,11 @@
 } buddy_system_t;
 
-extern void buddy_system_create(buddy_system_t *b, uint8_t max_order,
-    buddy_system_operations_t *op, void *data);
-extern link_t *buddy_system_alloc(buddy_system_t *b, uint8_t i);
-extern bool buddy_system_can_alloc(buddy_system_t *b, uint8_t order);
-extern void buddy_system_free(buddy_system_t *b, link_t *block);
-extern void buddy_system_structure_print(buddy_system_t *b, size_t elem_size);
-extern size_t buddy_conf_size(int max_order);
-extern link_t *buddy_system_alloc_block(buddy_system_t *b, link_t *block);
+extern void buddy_system_create(buddy_system_t *, uint8_t,
+    buddy_system_operations_t *, void *);
+extern link_t *buddy_system_alloc(buddy_system_t *, uint8_t);
+extern bool buddy_system_can_alloc(buddy_system_t *, uint8_t);
+extern void buddy_system_free(buddy_system_t *, link_t *);
+extern size_t buddy_conf_size(int);
+extern link_t *buddy_system_alloc_block(buddy_system_t *, link_t *);
 
 #endif
