Здравствуйте! Вас интересуют клиентские базы данных?

2019-07-16 Thread linux-media
Здравствуйте! Вас интересуют клиентские базы данных?

Здравствуйте! Вас интересуют клиентские базы данных?

2019-07-16 Thread linux-media
Здравствуйте! Вас интересуют клиентские базы данных?

Re: [PATCH 4/4] rcar-vin: Clean up how format is set on subdevice

2019-07-16 Thread Kieran Bingham
Hi Niklas, On 05/07/2019 05:55, Niklas Söderlund wrote: > With support for V4L2_FIELD_ALTERNATE added it's possible to clean up > how formats are set on the subdevice. This makes the code easier to read > as variable names now more clearly express their intent. > > Signed-off-by: Niklas Söderlund

Re: [PATCH 2/4] rcar-vin: Do not reset the crop and compose rectangles in s_fmt

2019-07-16 Thread Kieran Bingham
Hi Niklas On 05/07/2019 05:55, Niklas Söderlund wrote: > The crop and compose rectangles where reset when s_fmt was called s/where reset/are reset/ s/was called/is called/ > resulting in potentially valid rectangles where lost when updating the s/where lost/being lost/ > format. Fix this by in

Re: [PATCH 1/4] rcar-vin: Rename rectangle holding holding the video source information

2019-07-16 Thread Kieran Bingham
Hi Niklas, On 05/07/2019 05:55, Niklas Söderlund wrote: > The variable to hold the video source information dimensions was poorly > named 'source'. This is confusing as a lot of other members of struts s/struts/structs/ > share the same name with different purposes, rename it src_rect in > prepa

Re: [PATCH] rcar-vin: Centralize black listing of pixel formats

2019-07-16 Thread Kieran Bingham
Hi Niklas, On 05/07/2019 05:43, Niklas Söderlund wrote: > Instead of scattering black listing of pixel formats who are not > supported on particular platforms move it to a central location. I'd write this as: The rcar-vin on the M1 platform lacks support for XBGR32 and this is guarded against in

Re: [PATCH v3 3/9] dw-hdmi-cec: use cec_notifier_cec_adap_(un)register

2019-07-16 Thread Dariusz Marcinkiewicz
On Tue, Jul 16, 2019 at 10:48 AM Hans Verkuil wrote: ... > > @@ -297,8 +298,6 @@ static int dw_hdmi_cec_probe(struct platform_device > > *pdev) > >*/ > > devm_remove_action(&pdev->dev, dw_hdmi_cec_del, cec); > > I have to say that I find this remove action very confusing since it is

[PATCH v4 4/9] tda9950: use cec_notifier_cec_adap_(un)register

2019-07-16 Thread Dariusz Marcinkiewicz
Use the new cec_notifier_cec_adap_(un)register() functions to (un)register the notifier for the CEC adapter. Signed-off-by: Dariusz Marcinkiewicz Signed-off-by: Hans Verkuil --- drivers/gpu/drm/i2c/tda9950.c | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/driver

[PATCH v4 6/9] drm: sti: use cec_notifier_conn_(un)register

2019-07-16 Thread Dariusz Marcinkiewicz
Use the new cec_notifier_conn_(un)register() functions to (un)register the notifier for the HDMI connector, and fill in the cec_connector_info. Changes since v2: Don't invalidate physical address before unregistering the notifier. Signed-off-by: Dariusz Marcinkiewicz --- drivers

[PATCH v4 7/9] drm: tegra: use cec_notifier_conn_(un)register

2019-07-16 Thread Dariusz Marcinkiewicz
Use the new cec_notifier_conn_(un)register() functions to (un)register the notifier for the HDMI connector, and fill in the cec_connector_info. Signed-off-by: Dariusz Marcinkiewicz --- drivers/gpu/drm/tegra/output.c | 18 +++--- 1 file changed, 11 insertions(+), 7 deletions(-) diff

[PATCH v4 8/9] drm: dw-hdmi: use cec_notifier_conn_(un)register

2019-07-16 Thread Dariusz Marcinkiewicz
Use the new cec_notifier_conn_(un)register() functions to (un)register the notifier for the HDMI connector, and fill in the cec_connector_info. Changes since v2: - removed unnecessary NULL check before a call to cec_notifier_conn_unregister, - use cec_notifier_phys_addr_inv

[PATCH v4 9/9] drm: exynos: exynos_hdmi: use cec_notifier_conn_(un)register

2019-07-16 Thread Dariusz Marcinkiewicz
Use the new cec_notifier_conn_(un)register() functions to (un)register the notifier for the HDMI connector, and fill in the cec_connector_info. Changes since v2: - removed unnecessary call to invalidate phys address before deregistering the notifier, - use cec_notifier_phys

[PATCH v4 2/9] drm/i915/intel_hdmi: use cec_notifier_conn_(un)register

2019-07-16 Thread Dariusz Marcinkiewicz
Use the new cec_notifier_conn_(un)register() functions to (un)register the notifier for the HDMI connector, and fill in the cec_connector_info. Signed-off-by: Dariusz Marcinkiewicz Signed-off-by: Hans Verkuil --- drivers/gpu/drm/i915/intel_hdmi.c | 13 + 1 file changed, 9 insertions

[PATCH v4 1/9] drm_dp_cec: add connector info support.

2019-07-16 Thread Dariusz Marcinkiewicz
Pass the connector info to the CEC adapter. This makes it possible to associate the CEC adapter with the corresponding drm connector. Signed-off-by: Dariusz Marcinkiewicz Signed-off-by: Hans Verkuil --- .../display/amdgpu_dm/amdgpu_dm_mst_types.c | 2 +- drivers/gpu/drm/drm_dp_cec.c

[PATCH v4 3/9] dw-hdmi-cec: use cec_notifier_cec_adap_(un)register

2019-07-16 Thread Dariusz Marcinkiewicz
Use the new cec_notifier_cec_adap_(un)register() functions to (un)register the notifier for the CEC adapter. Also adds CEC_CAP_CONNECTOR_INFO capability to the adapter. Changes since v3: - add CEC_CAP_CONNECTOR_INFO to cec_allocate_adapter, - replace CEC_CAP_LOG_ADDRS | CEC_CAP_TR

[PATCH v4 5/9] drm: tda998x: use cec_notifier_conn_(un)register

2019-07-16 Thread Dariusz Marcinkiewicz
Use the new cec_notifier_conn_(un)register() functions to (un)register the notifier for the HDMI connector, and fill in the cec_connector_info. Changes since v2: - cec_notifier_phys_addr_invalidate where appropriate, - don't check for NULL notifier before calling cec_notifi

[PATCH v4 0/9] drm: cec: convert DRM drivers to the new notifier API

2019-07-16 Thread Dariusz Marcinkiewicz
This series updates DRM drivers to use new CEC notifier API. Only first two patches were tested on the actual hardware. Changes since v3: Updated adapter flags in dw-hdmi-cec. Changes since v2: Include all DRM patches from "cec: improve notifier support, add connector info

Re: [PATCH v2] media: vb2-dc: skip CPU sync in map/unmap dma_buf

2019-07-16 Thread Marek Szyprowski
Hi Lucas, On 2019-07-08 15:07, Lucas Stach wrote: > This is rougly equivalent to ca0e68e21aae (drm/prime: skip CPU sync > in map/unmap dma_buf). The contig memory allocated is already device > coherent memory, so there is no point in doing a CPU sync when > mapping it to another deevice. Also most

Re: [PATCH v3 3/9] dw-hdmi-cec: use cec_notifier_cec_adap_(un)register

2019-07-16 Thread Hans Verkuil
On 7/16/19 9:58 AM, Dariusz Marcinkiewicz wrote: > Use the new cec_notifier_cec_adap_(un)register() functions to > (un)register the notifier for the CEC adapter. > > Signed-off-by: Dariusz Marcinkiewicz > Signed-off-by: Hans Verkuil > --- > drivers/gpu/drm/bridge/synopsys/dw-hdmi-cec.c | 9

Re: [PATCH v3 3/9] dw-hdmi-cec: use cec_notifier_cec_adap_(un)register

2019-07-16 Thread Hans Verkuil
On 7/16/19 9:58 AM, Dariusz Marcinkiewicz wrote: > Use the new cec_notifier_cec_adap_(un)register() functions to > (un)register the notifier for the CEC adapter. > > Signed-off-by: Dariusz Marcinkiewicz > Signed-off-by: Hans Verkuil > --- > drivers/gpu/drm/bridge/synopsys/dw-hdmi-cec.c | 9

Re: PATCH V3.5 1/2] dvbsky: add support for "Mygica T230C v2"

2019-07-16 Thread Sean Young
On Tue, Jul 16, 2019 at 05:11:52AM +0200, JP wrote: > On 7/15/19 11:21 PM, Sean Young wrote: > > On Tue, Jul 09, 2019 at 08:39:32PM +0200, Jan Pieter van Woerkom wrote: > > > From: Jan Pieter van Woerkom > > > > > > Adds support for the "Mygica T230C v2" into the "dvbsky" driver. > > > A small en

[PATCH v3 6/9] drm: sti: use cec_notifier_conn_(un)register

2019-07-16 Thread Dariusz Marcinkiewicz
Use the new cec_notifier_conn_(un)register() functions to (un)register the notifier for the HDMI connector, and fill in the cec_connector_info. Changes since v2: Don't invalidate physical address before unregistering the notifier. Signed-off-by: Dariusz Marcinkiewicz --- drivers

[PATCH v3 7/9] drm: tegra: use cec_notifier_conn_(un)register

2019-07-16 Thread Dariusz Marcinkiewicz
Use the new cec_notifier_conn_(un)register() functions to (un)register the notifier for the HDMI connector, and fill in the cec_connector_info. Signed-off-by: Dariusz Marcinkiewicz --- drivers/gpu/drm/tegra/output.c | 18 +++--- 1 file changed, 11 insertions(+), 7 deletions(-) diff

[PATCH v3 9/9] drm: exynos: exynos_hdmi: use cec_notifier_conn_(un)register

2019-07-16 Thread Dariusz Marcinkiewicz
Use the new cec_notifier_conn_(un)register() functions to (un)register the notifier for the HDMI connector, and fill in the cec_connector_info. Changes since v2: - removed unnecessary call to invalidate phys address before deregistering the notifier, - use cec_notifier_phys

[PATCH v3 8/9] drm: dw-hdmi: use cec_notifier_conn_(un)register

2019-07-16 Thread Dariusz Marcinkiewicz
Use the new cec_notifier_conn_(un)register() functions to (un)register the notifier for the HDMI connector, and fill in the cec_connector_info. Changes since v2: - removed unnecessary NULL check before a call to cec_notifier_conn_unregister, - use cec_notifier_phys_addr_inv

[PATCH v3 0/9] drm: cec: convert DRM drivers to the new notifier API

2019-07-16 Thread Dariusz Marcinkiewicz
This series updates DRM drivers to use new CEC notifier API. Only first two patches were tested. Changes since v2: Include all DRM patches from "cec: improve notifier support, add connector info connector info" series. Updated commit message. Changes since v1: Some

[PATCH v3 1/9] drm_dp_cec: add connector info support.

2019-07-16 Thread Dariusz Marcinkiewicz
Pass the connector info to the CEC adapter. This makes it possible to associate the CEC adapter with the corresponding drm connector. Signed-off-by: Dariusz Marcinkiewicz Signed-off-by: Hans Verkuil --- .../display/amdgpu_dm/amdgpu_dm_mst_types.c | 2 +- drivers/gpu/drm/drm_dp_cec.c

[PATCH v3 5/9] drm: tda998x: use cec_notifier_conn_(un)register

2019-07-16 Thread Dariusz Marcinkiewicz
Use the new cec_notifier_conn_(un)register() functions to (un)register the notifier for the HDMI connector, and fill in the cec_connector_info. Changes since v2: - cec_notifier_phys_addr_invalidate where appropriate, - don't check for NULL notifier before calling cec_notifi

[PATCH v3 3/9] dw-hdmi-cec: use cec_notifier_cec_adap_(un)register

2019-07-16 Thread Dariusz Marcinkiewicz
Use the new cec_notifier_cec_adap_(un)register() functions to (un)register the notifier for the CEC adapter. Signed-off-by: Dariusz Marcinkiewicz Signed-off-by: Hans Verkuil --- drivers/gpu/drm/bridge/synopsys/dw-hdmi-cec.c | 9 - 1 file changed, 4 insertions(+), 5 deletions(-) diff --

[PATCH v3 4/9] tda9950: use cec_notifier_cec_adap_(un)register

2019-07-16 Thread Dariusz Marcinkiewicz
Use the new cec_notifier_cec_adap_(un)register() functions to (un)register the notifier for the CEC adapter. Signed-off-by: Dariusz Marcinkiewicz Signed-off-by: Hans Verkuil --- drivers/gpu/drm/i2c/tda9950.c | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/driver

[PATCH v3 2/9] drm/i915/intel_hdmi: use cec_notifier_conn_(un)register

2019-07-16 Thread Dariusz Marcinkiewicz
Use the new cec_notifier_conn_(un)register() functions to (un)register the notifier for the HDMI connector, and fill in the cec_connector_info. Signed-off-by: Dariusz Marcinkiewicz Signed-off-by: Hans Verkuil --- drivers/gpu/drm/i915/intel_hdmi.c | 13 + 1 file changed, 9 insertions

Re: [PATCH] media: platform: sti: c8sectpfe: core: Add of_node_put() at goto

2019-07-16 Thread Patrice CHOTARD
Hi Nishka On 7/16/19 7:38 AM, Nishka Dasgupta wrote: > Each iteration of for_each_child_of_node puts the previous node, but in > the case of a goto from the middle of the loop, there is no put, thus > causing a memory leak. Hence add a new label that puts the last used > node, and edit the goto st