[PATCH v4 69/79] include/uapi/linux/dvb/video.h: remove stdint.h include

2015-10-15 Thread Mikko Rapeli
Kernel headers should use linux/types.h instead. Signed-off-by: Mikko Rapeli --- include/uapi/linux/dvb/video.h | 1 - 1 file changed, 1 deletion(-) diff --git a/include/uapi/linux/dvb/video.h b/include/uapi/linux/dvb/video.h index d3d14a59..4939256 100644 ---

Re: [PATCHv9 06/15] rc: Add HDMI CEC protocol handling

2015-10-15 Thread Russell King - ARM Linux
On Mon, Oct 12, 2015 at 01:50:47PM +0200, Hans Verkuil wrote: > > Yet the rc-cec is a module in the filesystem, but it doesn't seem to > > be loaded automatically - even after the system has booted, the module > > hasn't been loaded. > > > > It looks like it _should_ be loaded, but this plainly

Re: [PATCH] rtl28xxu: fix control message flaws

2015-10-15 Thread Antti Palosaari
On 10/15/2015 01:11 AM, Daniel Glöckner wrote: On Sat, Oct 10, 2015 at 07:45:30PM +0300, Antti Palosaari wrote: Add lock to prevent concurrent access for control message as control message function uses shared buffer. Without the lock there may be remote control polling which messes the buffer

Re: [PATCH] media: vb2: Allow reqbufs(0) with "in use" MMAP buffers

2015-10-15 Thread Hans Verkuil
Hi Tomasz, I think this makes sense. After all, just closing the filehandle has the same effect. However, I would like to see some documentation improvements to go along with this vb2 patch. 1) The VIDIOC_REQBUFS ioctl documentation needs to be extended so it describes that it is OK to do this

[PATCH] media: vb2: Allow reqbufs(0) with "in use" MMAP buffers

2015-10-15 Thread Tomasz Figa
From: John Sheu Videobuf2 presently does not allow VIDIOC_REQBUFS to destroy outstanding buffers if the queue is of type V4L2_MEMORY_MMAP, and if the buffers are considered "in use". This is different behavior than for other memory types and prevents us from deallocating

[PATCH] rc: allow rc modules to be loaded if rc-main is not a module

2015-10-15 Thread Russell King
rc-main mistakenly uses #ifdef MODULE to determine whether it should load the rc keymap modules. This symbol is only defined if rc-main is being built as a module itself, and bears no relation to whether the rc keymaps are modules. Fix this to use CONFIG_MODULES instead. Fixes: 631493ecacd8

cron job: media_tree daily build: OK

2015-10-15 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: Fri Oct 16 04:00:18 CEST 2015 git branch: test git hash: efe98010b80ec4516b2779e1b4e4a8ce16bf89fe gcc

Re: [yavta PATCH 1/1] List supported formats with -f help

2015-10-15 Thread Laurent Pinchart
Hi Sakari, On Thursday 10 September 2015 15:19:20 Sakari Ailus wrote: > Passing format "help" to the -f option will list the supported formats and > exit. > > Signed-off-by: Sakari Ailus Applied, thank you. > --- > yavta.c | 19 +++ > 1 file

[PATCH 1/1] staging: omap4iss: Compiling V4L2 framework and I2C as modules is fine

2015-10-15 Thread Sakari Ailus
Don't require V4L2 framework and I2C being linked to the kernel directly. Signed-off-by: Sakari Ailus --- drivers/staging/media/omap4iss/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/media/omap4iss/Kconfig

[PATCH] mxl111sf: missing return values validation

2015-10-15 Thread Insu Yun
Return values of mxl111sf_enable_usb_output and mxl1x1sf_top_master_ctrl are not validated. Signed-off-by: Insu Yun --- drivers/media/usb/dvb-usb-v2/mxl111sf.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/media/usb/dvb-usb-v2/mxl111sf.c

Re: [PATCH] mxl111sf: missing return values validation

2015-10-15 Thread Michael Ira Krufky
On Thu, Oct 15, 2015 at 4:22 PM, Insu Yun wrote: > Return values of mxl111sf_enable_usb_output and mxl1x1sf_top_master_ctrl > are not validated. > > Signed-off-by: Insu Yun Eeek! You're right! ...and I'm the one who wrote the offending code. My bad O:-)

[PATCH MC Next Gen 2/2] media: au0828 create link between ALSA Mixer and decoder

2015-10-15 Thread Shuah Khan
Change au0828_create_media_graph() to create pad link between MEDIA_ENT_F_AUDIO_MIXER entity and decoder's AU8522_PAD_AUDIO_OUT. Signed-off-by: Shuah Khan --- drivers/media/usb/au0828/au0828-core.c | 12 drivers/media/usb/au0828/au0828.h | 1 + 2

[PATCH MC Next Gen 0/2] Add mixer and control interface media entities

2015-10-15 Thread Shuah Khan
This patch series adds the following: Add support for creating MEDIA_ENT_F_AUDIO_MIXER entity for each mixer and a MEDIA_INTF_T_ALSA_CONTROL control interface entity that links to mixer entities. MEDIA_INTF_T_ALSA_CONTROL entity corresponds to the control device for the card. Change

[PATCH MC Next Gen 1/2] sound/usb: Create media mixer function and control interface entities

2015-10-15 Thread Shuah Khan
Add support for creating MEDIA_ENT_F_AUDIO_MIXER entity for each mixer and a MEDIA_INTF_T_ALSA_CONTROL control interface entity that links to mixer entities. MEDIA_INTF_T_ALSA_CONTROL entity corresponds to the control device for the card. Signed-off-by: Shuah Khan ---

Re: [PATCHv9 07/15] cec: add HDMI CEC framework

2015-10-15 Thread Russell King - ARM Linux
On Wed, Oct 14, 2015 at 08:29:44AM +0200, Hans Verkuil wrote: > On 10/14/2015 12:51 AM, Russell King - ARM Linux wrote: > > On Mon, Oct 12, 2015 at 01:35:54PM +0200, Hans Verkuil wrote: > >> On 10/06/2015 07:06 PM, Russell King - ARM Linux wrote: > >>> Surely you aren't proposing that drivers

Re: [PATCHv9 07/15] cec: add HDMI CEC framework

2015-10-15 Thread Hans Verkuil
On 10/15/2015 07:34 PM, Russell King - ARM Linux wrote: > On Wed, Oct 14, 2015 at 08:29:44AM +0200, Hans Verkuil wrote: >> On 10/14/2015 12:51 AM, Russell King - ARM Linux wrote: >>> On Mon, Oct 12, 2015 at 01:35:54PM +0200, Hans Verkuil wrote: On 10/06/2015 07:06 PM, Russell King - ARM Linux