X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs2.git;a=blobdiff_plain;f=direct%2Fyaffs_list.h;h=a7afaea27b13b413007ca721efd9ab0a4eebc702;hp=6bb464606a4c192256013cfb8fa3136ff7657014;hb=d13e6146b4ccadd7aab2033b6cf9f4551d6abd71;hpb=d223baa0fa5644b48c2626f8d42b05ac45b1daf6 diff --git a/direct/yaffs_list.h b/direct/yaffs_list.h index 6bb4646..a7afaea 100644 --- a/direct/yaffs_list.h +++ b/direct/yaffs_list.h @@ -1,7 +1,7 @@ /* * YAFFS: Yet another Flash File System . A NAND-flash specific file system. * - * Copyright (C) 2002-2010 Aleph One Ltd. + * Copyright (C) 2002-2011 Aleph One Ltd. * for Toby Churchill Ltd and Brightstar Engineering * * Created by Charles Manning @@ -24,8 +24,6 @@ #define __YAFFS_LIST_H__ -#include "yportenv.h" - /* * This is a simple doubly linked list implementation that matches the * way the Linux kernel doubly linked list implementation works. @@ -121,7 +119,8 @@ static inline int list_empty(struct list_head *entry) #define list_for_each_safe(itervar, save_var, list) \ for (itervar = (list)->next, save_var = (list)->next->next; \ - itervar != (list); itervar = save_var, save_var = save_var->next) + itervar != (list); \ + itervar = save_var, save_var = save_var->next) #endif