cron job: media_tree daily build: WARNINGS

2017-11-26 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: Mon Nov 27 05:00:15 CET 2017 media-tree git hash:30b4e122d71cbec2944a5f8b558b88936ee42f10 media_build

Re: camss: camera controls missing on vfe interfaces

2017-11-26 Thread Daniel Mack
Hi Todor, everyone, On Monday, November 20, 2017 11:59 AM, Daniel Mack wrote: > On Monday, November 20, 2017 09:32 AM, Todor Tomov wrote: >> It is not a missing feature, it is more of a missing userspace >> implementation. >> When working with a media oriented device driver, the userspace has to

Re: [PATCH v2 06/11] dt-bindings: Document the Rockchip MIPI RX D-PHY bindings

2017-11-26 Thread Rob Herring
On Fri, Nov 24, 2017 at 10:37:01AM +0800, Jacob Chen wrote: > Add DT bindings documentation for Rockchip MIPI D-PHY RX > > Signed-off-by: Jacob Chen > --- > .../bindings/media/rockchip-mipi-dphy.txt | 77 > ++ > 1 file changed, 77

Re: [PATCH v2 05/11] dt-bindings: Document the Rockchip ISP1 bindings

2017-11-26 Thread Rob Herring
On Fri, Nov 24, 2017 at 10:37:00AM +0800, Jacob Chen wrote: > From: Jacob Chen > > Add DT bindings documentation for Rockchip ISP1 > > Signed-off-by: Jacob Chen > --- > .../devicetree/bindings/media/rockchip-isp1.txt| 61 >

[PATCH] staging/media: lirc: style fix - replace hard-coded function names

2017-11-26 Thread Martin Homuth
This patch fixes the remaining coding style warnings in the lirc module. It fixes the following checkpatch.pl warning: WARNING: Prefer using '"%s...", __func__' to using 'read', this function's name, in a string >From f11f24667ba6696cb71ac33a67fc0c7d3b4cd542 Mon Sep 17 00:00:00 2001 From: Martin

Re: Adjustments for a lot of function implementations

2017-11-26 Thread SF Markus Elfring
> ??? I did that: either one patch per directory with the same type of change, > or one patch per driver combining all the changes for that driver. Would you like to answer my still remaining questions in any more constructive ways? Regards, Markus

Re: [PATCH v2 04/11] media: rkisp1: add Rockchip MIPI Synopsys DPHY driver

2017-11-26 Thread kbuild test robot
: https://github.com/0day-ci/linux/commits/Jacob-Chen/Rockchip-ISP1-Driver/20171126-224713 base: git://linuxtv.org/media_tree.git master config: mips-allmodconfig (attached as .config) compiler: mips-linux-gnu-gcc (Debian 7.2.0-11) 7.2.0 reproduce: wget https

Re: [PATCH v2 03/11] media: rkisp1: add rockchip isp1 driver

2017-11-26 Thread kbuild test robot
: https://github.com/0day-ci/linux/commits/Jacob-Chen/Rockchip-ISP1-Driver/20171126-224713 base: git://linuxtv.org/media_tree.git master config: mips-allmodconfig (attached as .config) compiler: mips-linux-gnu-gcc (Debian 7.2.0-11) 7.2.0 reproduce: wget https

Re: [PATCH] [media] ddbridge: add IOCTLs

2017-11-26 Thread Daniel Scheller
Am Tue, 22 Aug 2017 17:21:16 +0200 schrieb Daniel Scheller : > Am Tue, 22 Aug 2017 16:05:21 +0200 > schrieb Ralph Metzler : > > > Daniel Scheller writes: > > > Am Sun, 20 Aug 2017 08:53:56 -0300 > > > schrieb Mauro Carvalho Chehab

Re: [PATCH] media: dvb_frontend: dvb_unregister_frontend must not call dvb_detach for fe->ops.release

2017-11-26 Thread Daniel Scheller
Am Fri, 24 Nov 2017 15:02:30 +0100 schrieb Wolfgang Rohdewald : > because ops.release was never dvb_attached. > Which makes sense because f->ops.release does not attach anything. > > Now, rmmod dvb_usb_pctv452e correctly sets counters for > stb6100/stb0899 to 0. > >

Re: [PATCH v2 04/11] media: rkisp1: add Rockchip MIPI Synopsys DPHY driver

2017-11-26 Thread kbuild test robot
: https://github.com/0day-ci/linux/commits/Jacob-Chen/Rockchip-ISP1-Driver/20171126-224713 base: git://linuxtv.org/media_tree.git master config: blackfin-allmodconfig (attached as .config) compiler: bfin-uclinux-gcc (GCC) 6.2.0 reproduce: wget https://raw.githubusercontent.com/intel

[PATCH 3/7] [media] dvb-frontends/stv6111: handle gate_ctrl errors

2017-11-26 Thread Daniel Scheller
From: Daniel Scheller When a parent (demod) driver encounters and signals a problem with gate_ctrl(), don't blindly continue poking the I2C bus. Signed-off-by: Daniel Scheller Tested-by: Richard Scobie ---

[PATCH 4/7] [media] dvb-frontends/stv0910: remove unneeded check/call to get_if_freq

2017-11-26 Thread Daniel Scheller
From: Daniel Scheller The result (if any) isn't used anywhere besides being assigned to a local variable (and the only current companion stv6111 doesn't even implement get_if_frequency()), thus remove the ptr check and the call, and also remove the now unused iffreq variable.

[PATCH 5/7] [media] dvb-frontends/stv0910: read symbolrate in get_frontend()

2017-11-26 Thread Daniel Scheller
From: Daniel Scheller Utilise get_cur_symbol_rate() in get_frontend() to update the dtv_frontend_properties with the current symbol rate as reported by the demodulator. Reported-by: Richard Scobie Cc: Ralph Metzler

[PATCH 7/7] [media] dvb-frontends/stv0910: remove unneeded dvb_math.h include

2017-11-26 Thread Daniel Scheller
From: Daniel Scheller Since nothing from dvb_math.h is used, remove the unneeded include. Signed-off-by: Daniel Scheller --- drivers/media/dvb-frontends/stv0910.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/media/dvb-frontends/stv0910.c

[PATCH 6/7] [media] dvb-frontends/stv0910: remove unneeded symbol rate inquiry

2017-11-26 Thread Daniel Scheller
From: Daniel Scheller tracking_optimization() doesn't make use of the symbol rate reported by the demodulator, so remove the unneeded inquiry and the now unneeded variable. Reported-by: Richard Scobie Cc: Ralph Metzler

[PATCH 2/7] [media] dvb-frontends/stv0910: WARN_ON() on consecutive mutex_unlock()

2017-11-26 Thread Daniel Scheller
From: Daniel Scheller Stack dump when gate_ctrl() is called in a way that consecutive unlocks happen. This is a clear indication that other drivers interfacing with the stv0910 driver don't do things properly or don't check for failures, so dump stack so that those drivers

[PATCH 1/7] [media] frontends/stv0910: add field offsets to field defines

2017-11-26 Thread Daniel Scheller
From: Daniel Scheller Each field (FSTV0910_XX) is declared as reg/off/unused/sign/mask. Add the missing offset value to the defines. Picked up from dddvb master, commit 8a1f27c3d22c ("add field offset to field defines") by Ralph Metzler , adapted to

[PATCH 0/7] stv0910+stv6111 updates/fixes/improvements

2017-11-26 Thread Daniel Scheller
From: Daniel Scheller This series improves (and fixes) a few pending things and a few new ones which were discovered by Richard (thanks!), removing some redundant calls and checks here and there, and putting the symbolrate readout and reporting to get_frontend(). The changes

Re: [PATCH v4] drm: bridge: synopsys/dw-hdmi: Enable cec clock

2017-11-26 Thread Archit Taneja
On 11/26/2017 01:48 AM, Pierre-Hugues Husson wrote: Support the "cec" optional clock. The documentation already mentions "cec" optional clock and it is used by several boards, but currently the driver doesn't enable it, thus preventing cec from working on those boards. And even worse: a