]> git.sven.stormbind.net Git - sven/exfatprogs.git/blobdiff - include/list.h
New upstream version 1.1.3
[sven/exfatprogs.git] / include / list.h
index 30a32de9488835384133ba6ac851388341800375..cc93668aed30c76e8902dc5d0e219db435ddc375 100644 (file)
@@ -84,7 +84,6 @@ static inline void list_add_tail(struct list_head *new, struct list_head *head)
        __list_add(new, head->prev, head);
 }
 
-
 /*
  * Delete a list entry by making the prev/next entries
  * point to each other.
@@ -111,8 +110,6 @@ static inline void list_del(struct list_head *entry)
        entry->prev = LIST_POISON2;
 }
 
-
-
 /**
  * list_del_init - deletes entry from list and reinitialize it.
  * @entry: the element to delete from the list.