Re: [U-Boot] [PATCH v2 04/12] list: Add list_last_entry() to find the last entry

2016-10-07 Thread Bin Meng
On Thu, Oct 6, 2016 at 10:42 AM, Simon Glass wrote: > We have list_first_entry() but in some cases it is useful to find the last > item added to the list. Add a macro for this. > > Signed-off-by: Simon Glass > Reviewed-by: Bin Meng > ---

[U-Boot] [PATCH v2 04/12] list: Add list_last_entry() to find the last entry

2016-10-05 Thread Simon Glass
We have list_first_entry() but in some cases it is useful to find the last item added to the list. Add a macro for this. Signed-off-by: Simon Glass Reviewed-by: Bin Meng --- Changes in v2: None include/linux/list.h | 11 +++ 1 file changed, 11