Re: [PATCH v3 0/11] Add R8A7743/SK-RZG1M board support

2016-10-12 Thread Sergei Shtylyov
On 10/12/2016 11:09 AM, Simon Horman wrote: Here's the set of 11 patches against Simon Horman's 'renesas.git' repo's 'renesas-devel-20161003-v4.8' tag. I'm adding the device tree support for the R8A7743-based SK-RZG1M board. The SoC is close to R8A7791 and the board seems identical to the

[RFC 2/5] media: v4l2-ctrls: Reserve controls for MAX217X

2016-10-12 Thread Ramesh Shanmugasundaram
Reserve controls for MAX217X RF to Bits tuner (family) chips. These hybrid radio receiver chips are highly programmable and hence reserving 32 controls. Signed-off-by: Ramesh Shanmugasundaram --- include/uapi/linux/v4l2-controls.h | 5 + 1 file

[RFC 1/5] media: i2c: max2175: Add MAX2175 support

2016-10-12 Thread Ramesh Shanmugasundaram
This patch adds driver support for MAX2175 chip. This is Maxim Integrated's RF to Bits tuner front end chip designed for software-defined radio solutions. This driver exposes the tuner as a sub-device instance with standard and custom controls to configure the device. Signed-off-by: Ramesh

[RFC 3/5] media: platform: rcar_drif: Add DRIF support

2016-10-12 Thread Ramesh Shanmugasundaram
This patch adds Digital Radio Interface (DRIF) support to R-Car Gen3 SoCs. The driver exposes each instance of DRIF as a V4L2 SDR device. A DRIF device represents a channel and each channel can have one or two sub-channels respectively depending on the target board. DRIF supports only Rx

[RFC 5/5] doc_rst: media: New SDR formats SC16, SC18 & SC20

2016-10-12 Thread Ramesh Shanmugasundaram
This patch adds documentation for the three new SDR formats V4L2_SDR_FMT_SCU16BE V4L2_SDR_FMT_SCU18BE V4L2_SDR_FMT_SCU20BE Signed-off-by: Ramesh Shanmugasundaram --- .../media/uapi/v4l/pixfmt-sdr-scu16be.rst | 44

[PATCH v2 4/5] PCI: rcar: Remove DRV_NAME macro

2016-10-12 Thread Bjorn Helgaas
The DRV_NAME macro is only used once, so there's no real advantage to having the macro at all. Remove it and use the "rcar-pcie" name directly in the struct platform_driver. No functional change intended. Signed-off-by: Bjorn Helgaas Acked-by: Simon Horman

[PATCH v2 0/5] PCI: rcar: Cleanups

2016-10-12 Thread Bjorn Helgaas
- Add local "dev" pointers to reduce repetition of things like ">dev". - Remove platform drvdata because it appears unused (we called platform_set_drvdata() but not platform_get_drvdata()). - Remove unused arguments and #defines. Nothing here should change the behavior of the

[PATCH v2 1/5] PCI: rcar: Add local struct device pointers

2016-10-12 Thread Bjorn Helgaas
Use a local "struct device *dev" for brevity and consistency with other drivers. No functional change intended. Signed-off-by: Bjorn Helgaas Acked-by: Simon Horman --- drivers/pci/host/pcie-rcar.c | 88

[PATCH v2 5/5] PCI: rcar-gen2: Add local struct device pointers

2016-10-12 Thread Bjorn Helgaas
Use a local "struct device *dev" for brevity and consistency with other drivers. No functional change intended. Signed-off-by: Bjorn Helgaas Acked-by: Simon Horman --- drivers/pci/host/pci-rcar-gen2.c | 46

[PATCH v2 2/5] PCI: rcar: Remove unused platform data

2016-10-12 Thread Bjorn Helgaas
The rcar driver never uses the platform drvdata pointer, so don't bother setting it. No functional change intended. Signed-off-by: Bjorn Helgaas Acked-by: Simon Horman --- drivers/pci/host/pcie-rcar.c |1 - 1 file changed, 1 deletion(-)

[PATCH v2 3/5] PCI: rcar: Remove unused rcar_pcie_get_resources() platform_device arg

2016-10-12 Thread Bjorn Helgaas
rcar_pcie_get_resources() doesn't use the platform_device pointer passed to it, so remove it. No functional change intended. Signed-off-by: Bjorn Helgaas Acked-by: Simon Horman --- drivers/pci/host/pcie-rcar.c |5 ++--- 1 file changed, 2

Re: [PATCH v2 0/5] PCI: rcar: Cleanups

2016-10-12 Thread Bjorn Helgaas
On Wed, Oct 12, 2016 at 07:58:35AM -0500, Bjorn Helgaas wrote: > - Add local "dev" pointers to reduce repetition of things like > ">dev". > > - Remove platform drvdata because it appears unused (we called > platform_set_drvdata() but not platform_get_drvdata()). > > - Remove unused