Re: [PATCH 1/3] misc:scif: do not define list_entry_next

2015-11-18 Thread Sergey Senozhatsky
On (11/18/15 08:17), Sudeep Dutt wrote: > On Wed, 2015-11-18 at 21:10 +0900, Sergey Senozhatsky wrote: > > Cosmetic. > > > > Do not define list_entry_next() and use list_next_entry() > > from list.h. > > > > Hi Sergey, > > A similar patch was posted @ https://lkml.org/lkml/2015/11/16/328 Oh, s

Re: [PATCH 1/3] misc:scif: do not define list_entry_next

2015-11-18 Thread Sudeep Dutt
On Wed, 2015-11-18 at 21:10 +0900, Sergey Senozhatsky wrote: > Cosmetic. > > Do not define list_entry_next() and use list_next_entry() > from list.h. > Hi Sergey, A similar patch was posted @ https://lkml.org/lkml/2015/11/16/328 Regards, Sudeep Dutt > Signed-off-by: Sergey Senozhatsky > ---

[PATCH 1/3] misc:scif: do not define list_entry_next

2015-11-18 Thread Sergey Senozhatsky
Cosmetic. Do not define list_entry_next() and use list_next_entry() from list.h. Signed-off-by: Sergey Senozhatsky --- drivers/misc/mic/scif/scif_dma.c | 27 +++ drivers/misc/mic/scif/scif_main.h | 1 + 2 files changed, 12 insertions(+), 16 deletions(-) diff --git a/d