Re: [PATCH] media: au0828 fix to clear enable/disable/change source handlers

2016-03-12 Thread kbuild test robot
Hi Shuah, [auto build test ERROR on sailus-media/master] [also build test ERROR on next-20160311] [cannot apply to v4.5-rc7] [if your patch is applied to the wrong git tree, please drop us a note to help improving the system] url: https://github.com/0day-ci/linux/commits/Shuah-Khan/media-au0

cron job: media_tree daily build: WARNINGS

2016-03-12 Thread Hans Verkuil
This message is generated daily by a cron job that builds media_tree for the kernels and architectures in the list below. Results of the daily build of media_tree: date: Sun Mar 13 04:00:21 CET 2016 git branch: test git hash: 840f5b0572ea9ddaca2bf5540a171013e92c97bd gcc versio

[PATCH] media: au0828 fix to clear enable/disable/change source handlers

2016-03-12 Thread Shuah Khan
Fix to clear enable/disable/change source handlers in the media device when media device is unregistered in au0828_unregister_media_device(). When au0828 module is removed, snd-usb-audio shouldn't call the handlers. Clearing will ensure snd-usb-audio won't call them once au0828 is removed. Signed-

[PATCH] media: add GFP flag to media_*() that could get called in atomic context

2016-03-12 Thread Shuah Khan
Add GFP flags to media_create_pad_link(), media_create_intf_link(), media_devnode_create(), and media_add_link() that could get called in atomic context to allow callers to pass in the right flags for memory allocation. tree-wide driver changes for media_*() GFP flags change: Change drivers to add

[PATCH] media: add dump_stack() if called in atomic context

2016-03-12 Thread Shuah Khan
Change media_add_link() and media_devnode_create() to dump_stack when called in atomic context. Signed-off-by: Shuah Khan Suggested-by: Mauro Carvalho Chehab --- drivers/media/media-entity.c | 6 ++ 1 file changed, 6 insertions(+) diff --git a/drivers/media/media-entity.c b/drivers/media/m

Re: [PATCH 1/2 v2] [media] au0828: disable tuner links and cache tuner/decoder

2016-03-12 Thread Shuah Khan
On 03/11/2016 12:02 PM, Mauro Carvalho Chehab wrote: > For au0828_enable_source() to work, the tuner links should be > disabled and the tuner/decoder should be cached at au0828 struct. > > While here, put dev->decoder cache together with dev->tuner, as > it makes easier to drop both latter if/when

Support for WinTV-soloHD

2016-03-12 Thread Russel Winder
I plugged a WinTV-soloHD device into my Debian Sid system running: Linux anglides 4.4.0-1-amd64 #1 SMP Debian 4.4.4-2 (2016-03-09) x86_64 GNU/Linux but the device, whilst appearing in the lsusb listing, didn't cause a /dev/dvb hierarchy to appear. I am guessing then that the change: http://git.l

Re: [v4l-utils PATCHv2] libv4lconvert: Add support for V4L2_PIX_FMT_{NV16,NV61}

2016-03-12 Thread Hans de Goede
Hi, On 12-03-16 01:45, Niklas Söderlund wrote: NV16 and NV61 are two-plane versions of the YUV 4:2:2 formats YUYV and YVYU. Support both formats by merging the two planes into a one and falling through to the V4L2_PIX_FMT_{YUYV,YVYU} code path. Signed-off-by: Niklas Söderlund --- I'm sorry th