Re: [PATCH] [media] vb2: remove unused variable

2015-04-14 Thread Marek Szyprowski
Hello, On 2015-04-10 22:24, Arnd Bergmann wrote: A recent bug fix removed all uses of the 'fileio' variable in vb2_thread_stop(), which now causes warnings in a lot of ARM defconfig builds: drivers/media/v4l2-core/videobuf2-core.c:3228:26: warning: unused variable 'fileio' [-Wunused-variable]

[PATCH] [media] vb2: remove unused variable

2015-04-10 Thread Arnd Bergmann
A recent bug fix removed all uses of the 'fileio' variable in vb2_thread_stop(), which now causes warnings in a lot of ARM defconfig builds: drivers/media/v4l2-core/videobuf2-core.c:3228:26: warning: unused variable 'fileio' [-Wunused-variable] This removes the variable as well. The commit that

[PATCH] [media] vb2: Remove unused variable fileio in vb2_thread_stop()

2015-04-07 Thread Geert Uytterhoeven
drivers/media/v4l2-core/videobuf2-core.c: In function 'vb2_thread_stop': drivers/media/v4l2-core/videobuf2-core.c:3228:26: warning: unused variable 'fileio' [-Wunused-variable] Fixes: 0e661006370b7e7f ([media] vb2: fix 'UNBALANCED' warnings when calling vb2_thread_stop()) Signed-off-by: Geert