Re: [PATCH v2 2/2] [media] rcar_vin: Remove obsolete platform data support

2015-10-07 Thread Geert Uytterhoeven
On Wed, Oct 7, 2015 at 8:32 PM, kbuild test robot wrote: > [auto build test ERROR on v4.3-rc4 -- if it's inappropriate base, please > ignore] > > config: arm-bockw_defconfig (attached as .config) > reproduce: > wget >

Re: AverMedia HD Duet (White Box) A188WB drivers

2015-10-07 Thread David Nelson
It's been a while since I originally asked you about this has there been any progress? On Fri, Jun 12, 2015 at 11:21 PM, Manu Abraham wrote: > Hi David, > > The saa7160 chipset is supported by the saa716x driver. > I wrote a driver for it, which is over here. >

Re: [PATCH 08/15] netup_unidvb: use pci_set_dma_mask insted of pci_dma_supported

2015-10-07 Thread Abylay Ospan
Hello, Acked-by: Abylay Ospan thanks ! 2015-10-03 18:19 GMT+03:00 Christoph Hellwig : > This ensures the dma mask that is supported by the driver is recorded > in the device structure. > > Signed-off-by: Christoph Hellwig > --- >

v4l2-ctrl is unable to set autogain to 0 with gspca/ov534

2015-10-07 Thread Antonio Ospite
Hi, It looks like it is not possible to set the autogain from 1 to 0 using v4l2-ctrl with the driver I am using. I am testing with the gspca/ov534 driver, and this sequence of commands does not change the value of the control: v4l2-ctl --set-ctrl=gain_automatic=1 v4l2-ctl --list-ctrls |

RE: [PATCH v3 0/2] vb2: Fix dma sg and dma contig cache sync

2015-10-07 Thread 林慧珊
Hi Sakari, Thanks for your help. :) Best regards, Tiffany -Original Message- From: Sakari Ailus [mailto:sakari.ai...@iki.fi] Sent: Wednesday, October 07, 2015 7:24 PM To: linux-media@vger.kernel.org Cc: Tiffany Lin (林慧珊) Subject: [PATCH v3 0/2] vb2: Fix dma sg and dma contig cache sync

[GIT PULL STABLE 4.2+] m88ds3103 bugfix

2015-10-07 Thread Antti Palosaari
The following changes since commit ca739eb086155007d7264be7ccc07f894d5a7bbe: Revert "[media] rcar_vin: call g_std() instead of querystd()" (2015-10-01 15:49:17 -0300) are available in the git repository at: git://linuxtv.org/anttip/media_tree.git m88ds3103_bugfix for you to fetch

cron job: media_tree daily build: ERRORS

2015-10-07 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: Thu Oct 8 04:00:21 CEST 2015 git branch: test git hash: efe98010b80ec4516b2779e1b4e4a8ce16bf89fe gcc

[PATCH v2 1/2] [media] rcar_vin: Remove obsolete r8a779x-vin platform_device_id entries

2015-10-07 Thread Geert Uytterhoeven
Since commit a483dcbfa21f919c ("ARM: shmobile: lager: Remove legacy board support"), R-Car Gen2 SoCs are only supported in generic DT-only ARM multi-platform builds. The driver doesn't need to match platform devices by name anymore, hence remove the corresponding platform_device_id entry.

[PATCH v2 0/2] [media] rcar_vin: Remove obsolete platform data support

2015-10-07 Thread Geert Uytterhoeven
Hi, Since commit 3d7608e4c169af03 ("ARM: shmobile: bockw: remove legacy board file and config"), Renesas R-Car SoCs are only supported in generic DT-only ARM multi-platform builds. The driver doesn't need to use platform data anymore, hence this series remove platform data configuration.

[PATCH v2 2/2] [media] rcar_vin: Remove obsolete platform data support

2015-10-07 Thread Geert Uytterhoeven
Since commit 3d7608e4c169af03 ("ARM: shmobile: bockw: remove legacy board file and config"), Renesas R-Car SoCs are only supported in generic DT-only ARM multi-platform builds. The driver doesn't need to use platform data anymore, hence remove platform data configuration. Signed-off-by: Geert

[PATCH v3 2/2] s5p-mfc: use MFC_BUF_FLAG_EOS to identify last buffers in decoder capture queue

2015-10-07 Thread Andrzej Hajda
MFC driver never delivered EOS event to apps feeding constantly its capture buffer with fresh buffers. The patch fixes it by marking last buffers returned by MFC with MFC_BUF_FLAG_EOS flag and firing EOS event on de-queuing such buffers. Signed-off-by: Andrzej Hajda --- Hi

[PATCH v3 1/2] s5p-mfc: end-of-stream handling for newer encoders

2015-10-07 Thread Andrzej Hajda
MFC encoder supports end-of-stream handling for encoder in version 5 of hardware. This patch adds it also for newer version. It was successfully tested on MFC-v8. Signed-off-by: Andrzej Hajda --- Hi Kamil, Incorrect format fixed. Regards Andrzej ---

[PATCH v3 10/10] media: flash: use led_set_brightness_sync for torch brightness

2015-10-07 Thread Jacek Anaszewski
LED subsystem shifted responsibility for choosing between SYNC or ASYNC way of setting brightness from drivers to the caller. Adapt the wrapper to those changes. Signed-off-by: Jacek Anaszewski Cc: Sakari Ailus Cc: Pavel Machek

Re: [PATCH v3 10/10] media: flash: use led_set_brightness_sync for torch brightness

2015-10-07 Thread Pavel Machek
On Wed 2015-10-07 11:10:48, Jacek Anaszewski wrote: > LED subsystem shifted responsibility for choosing between SYNC or ASYNC > way of setting brightness from drivers to the caller. Adapt the wrapper > to those changes. > > Signed-off-by: Jacek Anaszewski > Cc: Sakari

[PATCH v3 2/2] media: vb2 dma-sg: Fully cache synchronise buffers in prepare and finish

2015-10-07 Thread Sakari Ailus
From: Tiffany Lin In videobuf2 dma-sg memory types the prepare and finish ops, instead of passing the number of entries in the original scatterlist as the "nents" parameter to dma_sync_sg_for_device() and dma_sync_sg_for_cpu(), the value returned by dma_map_sg() was

[PATCH v3 1/2] media: vb2 dma-contig: Fully cache synchronise buffers in prepare and finish

2015-10-07 Thread Sakari Ailus
From: Tiffany Lin In videobuf2 dma-contig memory type the prepare and finish ops, instead of passing the number of entries in the original scatterlist as the "nents" parameter to dma_sync_sg_for_device() and dma_sync_sg_for_cpu(), the value returned by dma_map_sg() was

[PATCH v3 0/2] vb2: Fix dma sg and dma contig cache sync

2015-10-07 Thread Sakari Ailus
Hi Tiffany and others, I split the patches into two as they need to be applied since different stable kernel versions, and added cc stable. I intend to send a pull request later today. -- Kind regards, Sakari -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body

[GIT PULL] mem2mem changes for 4.4

2015-10-07 Thread Kamil Debski
The following changes since commit efe98010b80ec4516b2779e1b4e4a8ce16bf89fe: [media] DocBook: Fix remaining issues with VB2 core documentation (2015-10-05 09:12:56 -0300) are available in the git repository at: git://linuxtv.org/kdebski/media_tree_2.git for-4.4 for you to fetch changes up

Re: [PATCH v2 2/2] [media] rcar_vin: Remove obsolete platform data support

2015-10-07 Thread kbuild test robot
Hi Geert, [auto build test ERROR on v4.3-rc4 -- if it's inappropriate base, please ignore] config: arm-bockw_defconfig (attached as .config) reproduce: wget https://git.kernel.org/cgit/linux/kernel/git/wfg/lkp-tests.git/plain/sbin/make.cross -O ~/bin/make.cross chmod +x