Re: more build failures

2017-12-17 Thread Vincent McIntyre
On Sat, Dec 16, 2017 at 09:30:46AM -0200, Mauro Carvalho Chehab wrote: > > Just pushed two patches to media build, in order to address those > issues. Here, it is now compiling fine with Kernel 4.4.59. > Yep, working again. Thank you for taking the time to sort this out. Regards Vince

Re: [PATCH 4/5] v4l2: async: Postpone subdev_notifier registration

2017-12-17 Thread Kieran Bingham
Hi Jacopo, Thank you for the patch, This seems like a good thing to do at a glance here, but I'll leave contextual judgement like that to Sakari. A few minor grammatical nits here and a question on locking. On 13/12/17 18:26, Jacopo Mondi wrote: > Currently, subdevice notifiers are tested again

Re: [PATCH 4/5] v4l2: async: Postpone subdev_notifier registration

2017-12-17 Thread Kieran Bingham
On 17/12/17 13:10, Kieran Bingham wrote: > Hi Jacopo, > > Thank you for the patch, > > This seems like a good thing to do at a glance here, but I'll leave contextual > judgement like that to Sakari. Oh - I hit send and *then* my mail client wakes up and tells me Sakari reviewed two days ago. --

Re: dvb usb issues since kernel 4.9

2017-12-17 Thread Mauro Carvalho Chehab
Em Sun, 17 Dec 2017 12:06:37 + Sean Young escreveu: > Hi Josef, Em Sun, 17 Dec 2017 11:19:38 +0100 "Josef Griebichler" escreveu: > > Hello Mr. Caumont, > > > > since switch to kernel 4.9 there are several users which have issues with > > their usb dvb cards. > > Some get artifacts when

[PATCH 0/2] Support Physical Layer Scrambling

2017-12-17 Thread Ralph Metzler
Athanasios Oikonomou writes: > A new property DTV_SCRAMBLING_SEQUENCE_INDEX introduced to control > the gold sequence that several demods support. > > Also the DVB API was increased in order userspace to be aware of the > changes. > > The stv090x driver was changed to make use of the new

[PATCH 8/8] [media] ddbridge: improve ddb_ports_attach() failure handling

2017-12-17 Thread Daniel Scheller
From: Daniel Scheller As all error handling improved quite a bit, don't stop attaching frontends if one of them failed, since - if other tuner modules are connected to the PCIe bridge - other hardware may just work, so don't break on a single port failure, but rather initialise as much as possibl

[PATCH 0/8] ddbridge improvements and cleanups

2017-12-17 Thread Daniel Scheller
From: Daniel Scheller This series improves on a few things in ddbridge: * Fix up a KASAN report which pops up with all TDA18212-equipped hardware by changing the order of all frontend driver teardown. This was originally thought to be a problem of the tda18212 driver, see https://patchwork

[PATCH 1/8] [media] ddbridge: unregister I2C tuner client before detaching fe's

2017-12-17 Thread Daniel Scheller
From: Daniel Scheller Currently, rmmod ddbridge on a KASAN enabled kernel yields this report for hardware that utilises the tda18212 tuner driver: [ 50.355229] == [ 50.355271] BUG: KASAN: use-after-free in tda18212_remove+0

[PATCH 4/8] [media] ddbridge: move CI detach code to ddbridge-ci.c

2017-12-17 Thread Daniel Scheller
From: Daniel Scheller Move the CI teardown code to ddbridge-ci.c where everything else related to CI hardware lives. Cc: Ralph Metzler Signed-off-by: Daniel Scheller --- drivers/media/pci/ddbridge/ddbridge-ci.c | 11 +++ drivers/media/pci/ddbridge/ddbridge-ci.h | 1 + drivers/med

[PATCH 2/8] [media] ddbridge: fix resources cleanup for CI hardware

2017-12-17 Thread Daniel Scheller
From: Daniel Scheller Do kfree() on port->en->data instead of port->en. port->en only holds a ptr to a struct dvb_ca_en50221, which is a member either of a memalloc'ed struct ddb_ci (DuoFlex CI, Octopus CI Duo) or a struct cxd (CXD2099AR based Single Flex, allocated by the cxd2099 driver). port->

[PATCH 6/8] [media] ddbridge: fix deinit order in case of failure in ddb_init()

2017-12-17 Thread Daniel Scheller
From: Daniel Scheller In ddb_init(), the deinitialization sequence isn't correct when handling errors, and could even lead to a memleak depending on where things failed. Fix the deinit order. Signed-off-by: Daniel Scheller --- drivers/media/pci/ddbridge/ddbridge-core.c | 10 +- 1 file

[PATCH 5/8] [media] ddbridge: completely tear down input resources on failure

2017-12-17 Thread Daniel Scheller
From: Daniel Scheller In dvb_input_attach(), whenever a demod driver fails to initialise, or if frontend registration fails, perform a full input/frontend teardown using dvb_input_detach() (which can safely be done since the current init state is tracked in the 'attached' struct member). Claimed

[PATCH 3/8] [media] ddbridge: deduplicate calls to dvb_ca_en50221_init()

2017-12-17 Thread Daniel Scheller
From: Daniel Scheller All CI types do dvb_ca_en50221_init() with the same arguments. Move this call after the switch-case to remove the repetition in every case block. Cc: Ralph Metzler Signed-off-by: Daniel Scheller --- drivers/media/pci/ddbridge/ddbridge-ci.c | 6 ++ 1 file changed, 2 i

[PATCH 7/8] [media] ddbridge: detach first input if the second one failed to init

2017-12-17 Thread Daniel Scheller
From: Daniel Scheller In ddb_ports_attach(), if the second input of a dual tuner failed to initialise, the first one can be detached (and resources be freed) as this will be counted as the whole port having failed to initialise, thus the first one won't be used anyway. Signed-off-by: Daniel Sche

Re: [PATCH 0/8] ddbridge improvements and cleanups

2017-12-17 Thread Daniel Scheller
On Sun, 17 Dec 2017 16:40:41 +0100 Daniel Scheller wrote: > I verified this by simply removing tda18212.ko with this DD setup: Sorry, I forgot to outline this: I also tested by removing stv0367.ko and cxd2841er.ko of course, which resulted in partially working hardware, either the cxd-based hard

Re: [PATCH 4/5] v4l2: async: Postpone subdev_notifier registration

2017-12-17 Thread jacopo mondi
Hi Sakari, On Fri, Dec 15, 2017 at 05:20:40PM +0200, Sakari Ailus wrote: > Hi Jacopo, > > On Wed, Dec 13, 2017 at 07:26:19PM +0100, Jacopo Mondi wrote: > > Currently, subdevice notifiers are tested against all available > > subdevices as soon as they get registered. It often happens anyway > > tha

Re: [PATCH 5/5] v4l2: async: Add debug output to v4l2-async module

2017-12-17 Thread jacopo mondi
Hi Sakari, On Fri, Dec 15, 2017 at 06:17:04PM +0200, Sakari Ailus wrote: > Hi Jacopo, > > On Wed, Dec 13, 2017 at 07:26:20PM +0100, Jacopo Mondi wrote: > > The v4l2-async module operations are quite complex to follow, due to the > > asynchronous nature of subdevices and notifiers registration and

Re: [PATCH 1/5] v4l: async: Use endpoint node, not device node, for fwnode match

2017-12-17 Thread Laurent Pinchart
Hi Sakari, Thank you for the patch. On Wednesday, 13 December 2017 20:26:16 EET Jacopo Mondi wrote: > From: Sakari Ailus > > V4L2 async framework can use both device's fwnode and endpoints's fwnode > for matching the async sub-device with the sub-device. In order to proceed > moving towards end

Re: [PATCH 2/5] device property: Add fwnode_get_name() operation

2017-12-17 Thread Laurent Pinchart
Hi Jacopo, Thank you for the patch. On Wednesday, 13 December 2017 20:26:17 EET Jacopo Mondi wrote: > Add operation to retrieve the device name from a fwnode handle. > > Signed-off-by: Jacopo Mondi > --- > drivers/acpi/property.c | 6 ++ > drivers/base/property.c | 12 > dr

Re: [PATCH 3/5] include: v4l2_async: Add 'owner' field to notifier

2017-12-17 Thread Laurent Pinchart
Hello, On Friday, 15 December 2017 16:38:16 EET Sakari Ailus wrote: > Hi Jacopo, > > On Wed, Dec 13, 2017 at 07:26:18PM +0100, Jacopo Mondi wrote: > > Notifiers can be registered as root notifiers (identified by a 'struct > > v4l2_device *') or subdevice notifiers (identified by a 'struct > > v4l

Re: [PATCH 4/5] v4l2: async: Postpone subdev_notifier registration

2017-12-17 Thread Laurent Pinchart
Hi Jacopo, Thank you for the patch. On Wednesday, 13 December 2017 20:26:19 EET Jacopo Mondi wrote: > Currently, subdevice notifiers are tested against all available > subdevices as soon as they get registered. It often happens anyway > that the subdevice they are connected to is not yet initiali

Re: [PATCH 5/5] v4l2: async: Add debug output to v4l2-async module

2017-12-17 Thread Laurent Pinchart
Hello, On Friday, 15 December 2017 18:17:04 EET Sakari Ailus wrote: > On Wed, Dec 13, 2017 at 07:26:20PM +0100, Jacopo Mondi wrote: > > The v4l2-async module operations are quite complex to follow, due to the > > asynchronous nature of subdevices and notifiers registration and > > matching procedu

Re: [PATCH v2 1/6] cx25840: add pin to pad mapping and output format configuration

2017-12-17 Thread Maciej S. Szmigiero
On 11.12.2017 16:27, Mauro Carvalho Chehab wrote: > Em Tue, 10 Oct 2017 23:34:45 +0200 > "Maciej S. Szmigiero" escreveu: > >> This commit adds pin to pad mapping and output format configuration support >> in CX2584x-series chips to cx25840 driver. >> >> This functionality is then used to allow di

[PATCH v3 0/6] [media] Add analog mode support for Medion MD95700

2017-12-17 Thread Maciej S. Szmigiero
This series adds support for analog part of Medion 95700 in the cxusb driver. What works: * Video capture at various sizes with sequential fields, * Input switching (TV Tuner, Composite, S-Video), * TV and radio tuning, * Video standard switching and auto detection, * Radio mode switching (stereo

[PATCH v3 2/6] cx25840: add kernel-doc description of struct cx25840_state

2017-12-17 Thread Maciej S. Szmigiero
This commit describes a device instance private data of the driver (struct cx25840_state) in a kernel-doc style comment. Signed-off-by: Maciej S. Szmigiero --- drivers/media/i2c/cx25840/cx25840-core.h | 33 ++-- 1 file changed, 31 insertions(+), 2 deletions(-) diff -

[PATCH v3 1/6] ivtv: zero-initialize cx25840 platform data

2017-12-17 Thread Maciej S. Szmigiero
We need to zero-initialize cx25840 platform data structure to make sure that its future members do not contain random stack garbage. Signed-off-by: Maciej S. Szmigiero --- drivers/media/pci/ivtv/ivtv-i2c.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/media/pci/ivtv/ivtv-i2c.c b/d

[PATCH v3 3/6] cx25840: add pin to pad mapping and output format configuration

2017-12-17 Thread Maciej S. Szmigiero
This commit adds pin to pad mapping and output format configuration support in CX2584x-series chips to cx25840 driver. This functionality is then used to allow disabling ivtv-specific hacks (called a "generic mode"), so cx25840 driver can be used for other devices not needing them without risking

[PATCH v3 5/6] [media] cxusb: implement Medion MD95700 digital / analog coexistence

2017-12-17 Thread Maciej S. Szmigiero
This patch prepares cxusb driver for supporting the analog part of Medion 95700 (previously only the digital - DVB - mode was supported). Specifically, it adds support for: * switching the device between analog and digital modes of operation, * enforcing that only one mode is active at the same ti

[PATCH v3 4/6] tuner-simple: allow setting mono radio mode

2017-12-17 Thread Maciej S. Szmigiero
For some types of tuners (Philips FMD1216ME(X) MK3 currently) we know that letting TDA9887 output port 1 remain high (inactive) will switch FM radio to mono mode. Let's make use of this functionality - nothing changes for the default stereo radio mode. Tested on a Medion 95700 board which has a FM

[PATCH v3 6/6] [media] cxusb: add analog mode support for Medion MD95700

2017-12-17 Thread Maciej S. Szmigiero
This patch adds support for analog part of Medion 95700 in the cxusb driver. What works: * Video capture at various sizes with sequential fields, * Input switching (TV Tuner, Composite, S-Video), * TV and radio tuning, * Video standard switching and auto detection, * Radio mode switching (stereo /

Re: [PATCH v5 0/4] NVIDIA Tegra video decoder driver

2017-12-17 Thread Dmitry Osipenko
On 12.12.2017 03:26, Dmitry Osipenko wrote: > VDE driver provides accelerated video decoding to NVIDIA Tegra SoC's, > it is a result of reverse-engineering efforts. Driver has been tested on > Toshiba AC100 and Acer A500, it should work on any Tegra20 device. > > In userspace this driver is utiliz

Re: [PATCH v3 6/6] [media] cxusb: add analog mode support for Medion MD95700

2017-12-17 Thread Philippe Ombredanne
Maciej, On Sun, Dec 17, 2017 at 6:37 PM, Maciej S. Szmigiero wrote: > This patch adds support for analog part of Medion 95700 in the cxusb > driver. > --- /dev/null > +++ b/drivers/media/usb/dvb-usb/cxusb-analog.c > @@ -0,0 +1,1927 @@ > +/* DVB USB compliant linux driver for Conexant USB refere

Re: [PATCH v3 6/6] [media] cxusb: add analog mode support for Medion MD95700

2017-12-17 Thread Maciej S. Szmigiero
On 17.12.2017 19:24, Philippe Ombredanne wrote: > Maciej, > > On Sun, Dec 17, 2017 at 6:37 PM, Maciej S. Szmigiero > wrote: >> This patch adds support for analog part of Medion 95700 in the cxusb >> driver. > > >> --- /dev/null >> +++ b/drivers/media/usb/dvb-usb/cxusb-analog.c >> @@ -0,0 +1,192

[PATCH v4 1/6] ivtv: zero-initialize cx25840 platform data

2017-12-17 Thread Maciej S. Szmigiero
We need to zero-initialize cx25840 platform data structure to make sure that its future members do not contain random stack garbage. Signed-off-by: Maciej S. Szmigiero --- drivers/media/pci/ivtv/ivtv-i2c.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/media/pci/ivtv/ivtv-i2c.c b/d

[PATCH v4 0/6] [media] Add analog mode support for Medion MD95700

2017-12-17 Thread Maciej S. Szmigiero
This series adds support for analog part of Medion 95700 in the cxusb driver. What works: * Video capture at various sizes with sequential fields, * Input switching (TV Tuner, Composite, S-Video), * TV and radio tuning, * Video standard switching and auto detection, * Radio mode switching (stereo

[PATCH v4 3/6] cx25840: add pin to pad mapping and output format configuration

2017-12-17 Thread Maciej S. Szmigiero
This commit adds pin to pad mapping and output format configuration support in CX2584x-series chips to cx25840 driver. This functionality is then used to allow disabling ivtv-specific hacks (called a "generic mode"), so cx25840 driver can be used for other devices not needing them without risking

[PATCH v4 2/6] cx25840: add kernel-doc description of struct cx25840_state

2017-12-17 Thread Maciej S. Szmigiero
This commit describes a device instance private data of the driver (struct cx25840_state) in a kernel-doc style comment. Signed-off-by: Maciej S. Szmigiero --- drivers/media/i2c/cx25840/cx25840-core.h | 33 ++-- 1 file changed, 31 insertions(+), 2 deletions(-) diff -

[PATCH v4 6/6] [media] cxusb: add analog mode support for Medion MD95700

2017-12-17 Thread Maciej S. Szmigiero
This patch adds support for analog part of Medion 95700 in the cxusb driver. What works: * Video capture at various sizes with sequential fields, * Input switching (TV Tuner, Composite, S-Video), * TV and radio tuning, * Video standard switching and auto detection, * Radio mode switching (stereo /

[PATCH v4 5/6] [media] cxusb: implement Medion MD95700 digital / analog coexistence

2017-12-17 Thread Maciej S. Szmigiero
This patch prepares cxusb driver for supporting the analog part of Medion 95700 (previously only the digital - DVB - mode was supported). Specifically, it adds support for: * switching the device between analog and digital modes of operation, * enforcing that only one mode is active at the same ti

[PATCH v4 4/6] tuner-simple: allow setting mono radio mode

2017-12-17 Thread Maciej S. Szmigiero
For some types of tuners (Philips FMD1216ME(X) MK3 currently) we know that letting TDA9887 output port 1 remain high (inactive) will switch FM radio to mono mode. Let's make use of this functionality - nothing changes for the default stereo radio mode. Tested on a Medion 95700 board which has a FM

Re: [PATCH v4 0/6] [media] Add analog mode support for Medion MD95700

2017-12-17 Thread Philippe Ombredanne
On Sun, Dec 17, 2017 at 7:46 PM, Maciej S. Szmigiero wrote: > This series adds support for analog part of Medion 95700 in the cxusb > driver. > Changes from v3: > Add SPDX tag to a newly added "cxusb-analog.c" file. Thank you. -- Cordially Philippe Ombredanne

Re: Support For Charity

2017-12-17 Thread M. M. Fridman
I Mikhail Fridman. has selected you specially as one of my beneficiaries for my Charitable Donation, Just as I have declared on May 23, 2016 to give my fortune as charity. Check the link below for confirmation: http://www.ibtimes.co.uk/russias-second-wealthiest-man-mikhail-fridman-plans-leaving-1

[PATCH 0/5] arm: sunxi: IR support for A83T

2017-12-17 Thread Philipp Rossak
This patch series adds support for the sunxi A83T ir module and enhances the sunxi-ir driver. Right now the base clock frequency for the ir driver is a hard coded define and is set to 8 MHz. This works for the most common ir receivers. On the Sinovoip Bananapi M3 the ir receiver needs, a 3 MHz b

[PATCH 5/5] arm: dts: sun8i: a83t: bananapi-m3: Enable IR controller

2017-12-17 Thread Philipp Rossak
The Bananapi M3 has an onboard IR receiver. This enables the onboard IR receiver subnode. Other than the other IR receivers this one needs a base clock frequency of 300 Hz (3 MHz), to be able to work. Signed-off-by: Philipp Rossak --- arch/arm/boot/dts/sun8i-a83t-bananapi-m3.dts | 7 +++

[PATCH 4/5] arm: dts: sun8i: a83t: Add support for the ir interface

2017-12-17 Thread Philipp Rossak
The ir interface is like on the H3 located at 0x01f02000 and is exactly the same. This patch adds support for the ir interface on the A83T. Signed-off-by: Philipp Rossak --- arch/arm/boot/dts/sun8i-a83t.dtsi | 10 ++ 1 file changed, 10 insertions(+) diff --git a/arch/arm/boot/dts/sun8i-

[PATCH 3/5] arm: dts: sun8i: a83t: Add the ir pin for the A83T

2017-12-17 Thread Philipp Rossak
The CIR Pin of the A83T is located at PL12. Signed-off-by: Philipp Rossak --- arch/arm/boot/dts/sun8i-a83t.dtsi | 5 + 1 file changed, 5 insertions(+) diff --git a/arch/arm/boot/dts/sun8i-a83t.dtsi b/arch/arm/boot/dts/sun8i-a83t.dtsi index a384b766f3dc..954c2393325f 100644 --- a/arch/arm/b

[PATCH 2/5] media: dt: bindings: Update binding documentation for sunxi IR controller

2017-12-17 Thread Philipp Rossak
This patch updates documentation for Device-Tree bindings for sunxi IR controller and adds the new optional property for the base clock frequency. Signed-off-by: Philipp Rossak --- Documentation/devicetree/bindings/media/sunxi-ir.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Document

[PATCH 1/5] media: rc: update sunxi-ir driver to get base clock frequency from devicetree

2017-12-17 Thread Philipp Rossak
This patch updates the sunxi-ir driver to set the base clock frequency from devicetree. This is neccessary since there are different ir recievers on the market, that operate with different frequencys. So this value could be set if the attached ir receiver needs an other base clock frequency, than

Re: [PATCH 1/5] media: rc: update sunxi-ir driver to get base clock frequency from devicetree

2017-12-17 Thread Sean Young
On Sun, Dec 17, 2017 at 11:45:43PM +0100, Philipp Rossak wrote: > This patch updates the sunxi-ir driver to set the base clock frequency from > devicetree. > > This is neccessary since there are different ir recievers on the > market, that operate with different frequencys. So this value could be

Re: [PATCH 4/5] v4l2: async: Postpone subdev_notifier registration

2017-12-17 Thread Sakari Ailus
Hi Laurent, On Sun, Dec 17, 2017 at 07:03:17PM +0200, Laurent Pinchart wrote: > Hi Jacopo, > > Thank you for the patch. > > On Wednesday, 13 December 2017 20:26:19 EET Jacopo Mondi wrote: > > Currently, subdevice notifiers are tested against all available > > subdevices as soon as they get regis

Re: [PATCH 5/5] v4l2: async: Add debug output to v4l2-async module

2017-12-17 Thread Sakari Ailus
Hi Jacopo, On Sun, Dec 17, 2017 at 05:42:54PM +0100, jacopo mondi wrote: > Hi Sakari, > > On Fri, Dec 15, 2017 at 06:17:04PM +0200, Sakari Ailus wrote: > > Hi Jacopo, > > > > On Wed, Dec 13, 2017 at 07:26:20PM +0100, Jacopo Mondi wrote: > > > The v4l2-async module operations are quite complex to

[trivial PATCH] treewide: Align function definition open/close braces

2017-12-17 Thread Joe Perches
Some functions definitions have either the initial open brace and/or the closing brace outside of column 1. Move those braces to column 1. This allows various function analyzers like gnu complexity to work properly for these modified functions. Miscellanea: o Remove extra trailing ; and blank l

Re: [PATCH 1/5] media: rc: update sunxi-ir driver to get base clock frequency from devicetree

2017-12-17 Thread Andi Shyti
Hi Philipp, just a couple of small nitpicks. > + u32 b_clk_freq; [...] > + /* Base clock frequency (optional) */ > + if (of_property_read_u32(dn, "clock-frequency", &b_clk_freq)) { > + b_clk_freq = SUNXI_IR_BASE_CLK; > + } > + how about you intialize 'b_clk_freq' to

Re: [PATCH 3/5] arm: dts: sun8i: a83t: Add the ir pin for the A83T

2017-12-17 Thread Chen-Yu Tsai
On Mon, Dec 18, 2017 at 6:45 AM, Philipp Rossak wrote: > The CIR Pin of the A83T is located at PL12. > > Signed-off-by: Philipp Rossak > --- > arch/arm/boot/dts/sun8i-a83t.dtsi | 5 + > 1 file changed, 5 insertions(+) > > diff --git a/arch/arm/boot/dts/sun8i-a83t.dtsi > b/arch/arm/boot/dts/

Re: [PATCH 5/5] arm: dts: sun8i: a83t: bananapi-m3: Enable IR controller

2017-12-17 Thread Chen-Yu Tsai
On Mon, Dec 18, 2017 at 6:45 AM, Philipp Rossak wrote: > The Bananapi M3 has an onboard IR receiver. > This enables the onboard IR receiver subnode. > Other than the other IR receivers this one needs a base clock frequency Unlike the other... > of 300 Hz (3 MHz), to be able to work. > > Sign

cron job: media_tree daily build: ERRORS

2017-12-17 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 Dec 18 05:00:17 CET 2017 media-tree git hash:45267fed3e55845c5b4b279162b273040ae4f587 media_build git

Re: [PATCH v3 3/5] media: dt-bindings: ov5640: add support of DVP parallel interface

2017-12-17 Thread Sakari Ailus
Hi Hugues, Hugues FRUCHET wrote: > Hi Sakari, > > On 12/07/2017 02:59 PM, Sakari Ailus wrote: >> Hi Hugues, >> >> On Thu, Dec 07, 2017 at 01:40:51PM +0100, Hugues Fruchet wrote: >>> Add bindings for OV5640 DVP parallel interface support. >>> >>> Signed-off-by: Hugues Fruchet >>> --- >>> .../de

Re: [PATCH v9 2/2] media: i2c: Add the ov7740 image sensor driver

2017-12-17 Thread Sakari Ailus
Hi Wenyou, Wenyou Yang wrote: ... > +static int ov7740_start_streaming(struct ov7740 *ov7740) > +{ > + int ret; > + > + if (ov7740->fmt) { > + ret = regmap_multi_reg_write(ov7740->regmap, > + ov7740->fmt->regs, > +

Re: [PATCH] media: v4l: xilinx: Use SPDX-License-Identifier

2017-12-17 Thread Michal Simek
Hi guys, On 15.12.2017 10:27, Mauro Carvalho Chehab wrote: > Em Fri, 15 Dec 2017 10:55:26 +0530 > Dhaval Shah escreveu: > >> Hi Laurent/Mauro/Greg, >> >> On Fri, Dec 15, 2017 at 3:32 AM, Laurent Pinchart >> wrote: >>> Hi Mauro, >>> >>> On Thursday, 14 December 2017 23:50:03 EET Mauro Carvalho C

Re: [PATCH 2/5] media: dt: bindings: Update binding documentation for sunxi IR controller

2017-12-17 Thread Maxime Ripard
Hi, On Sun, Dec 17, 2017 at 11:45:44PM +0100, Philipp Rossak wrote: > This patch updates documentation for Device-Tree bindings for sunxi IR > controller and adds the new optional property for the base clock > frequency. > > Signed-off-by: Philipp Rossak > --- > Documentation/devicetree/binding

Re: [PATCH 4/5] arm: dts: sun8i: a83t: Add support for the ir interface

2017-12-17 Thread Maxime Ripard
On Sun, Dec 17, 2017 at 11:45:46PM +0100, Philipp Rossak wrote: > The ir interface is like on the H3 located at 0x01f02000 and is exactly > the same. This patch adds support for the ir interface on the A83T. > > Signed-off-by: Philipp Rossak > --- > arch/arm/boot/dts/sun8i-a83t.dtsi | 10 +++