Re: [PATCH v2 1/2] ASoC: rockchip: Add machine driver for max98090 codec

2015-07-18 Thread Mark Brown
On Sat, Jul 18, 2015 at 01:08:43PM +0800, Xing Zheng wrote: + ret = devm_snd_soc_register_card(pdev-dev, card); + if (ret) { + dev_err(pdev-dev, + Soc register card failed %d\n, ret); + return ret; + } + + return ret; +} +

Re: [PATCH 3/5] arm64: mediatek: enable MTK_TIMER

2015-07-18 Thread Thomas Gleixner
On Fri, 17 Jul 2015, Matthias Brugger wrote: On Monday, July 13, 2015 05:32:47 PM Yingjoe Chen wrote: Enable MTK_TIMER for MediaTek plaform, which will be used as schedule clock. Signed-off-by: Yingjoe Chen yingjoe.c...@mediatek.com --- Applied, thanks. So you enable the current

Re: [PATCH v2 3/4] touchscreen: colibri-vf50-ts: Add touchscreen support for Colibri VF50

2015-07-18 Thread maitysanchayan
On 15-07-18 14:03:25, Nicolae Rosia wrote: Hi, On Thu, Jul 16, 2015 at 6:13 PM, Sanchayan Maity maitysancha...@gmail.com wrote: The Colibri Vybrid VF50 module supports 4-wire touchscreens using FETs and ADC inputs. This driver uses the IIO consumer interface and relies on the vf610_adc

Re: [PATCH v2 3/4] touchscreen: colibri-vf50-ts: Add touchscreen support for Colibri VF50

2015-07-18 Thread Nicolae Rosia
Hi, On Thu, Jul 16, 2015 at 6:13 PM, Sanchayan Maity maitysancha...@gmail.com wrote: The Colibri Vybrid VF50 module supports 4-wire touchscreens using FETs and ADC inputs. This driver uses the IIO consumer interface and relies on the vf610_adc driver based on the IIO framework.

Re: [PATCH v2 3/4] touchscreen: colibri-vf50-ts: Add touchscreen support for Colibri VF50

2015-07-18 Thread maitysanchayan
Hello Dmitry, On 15-07-17 16:42:42, Dmitry Torokhov wrote: Hi Sanchayan, On Thu, Jul 16, 2015 at 08:43:21PM +0530, Sanchayan Maity wrote: The Colibri Vybrid VF50 module supports 4-wire touchscreens using FETs and ADC inputs. This driver uses the IIO consumer interface and relies on

Re: [RESEND PATCH v3] ARM: tegra124: pmu support

2015-07-18 Thread Kyle Huey
On Fri, Jul 17, 2015 at 4:59 PM, Thierry Reding thierry.red...@gmail.com wrote: On Mon, Jul 13, 2015 at 10:35:45AM -0700, Kyle Huey wrote: This patch modifies the device tree for tegra124 based devices to enable the Cortex A15 PMU. The interrupt numbers are taken from NVIDIA TRM

[PATCH] hwmon: (lm70) add device tree support

2015-07-18 Thread Rabin Vincent
Allow the lm70 to be probed from a device tree. Signed-off-by: Rabin Vincent ra...@rab.in --- Documentation/devicetree/bindings/hwmon/lm70.txt | 21 +++ drivers/hwmon/lm70.c | 34 +++- 2 files changed, 54 insertions(+), 1 deletion(-)

[PATCH 0/2] iio: temperature: add mcp98xx driver support

2015-07-18 Thread Matt Ranostay
This changeset adds driver support for the Microchip mcp98xx series of temperature sensors. This includes temperature reading, and rising/falling threshold events. Matt Ranostay (2): iio: temperature: DT binding doc for mcp98xx iio: temperature: add support for mcp98xx sensors

[PATCH 1/2] iio: temperature: DT binding doc for mcp98xx

2015-07-18 Thread Matt Ranostay
Document compatible string, and required DT properties for mcp98xx chipset driver Signed-off-by: Matt Ranostay mranos...@gmail.com --- .../bindings/iio/temperature/mcp98xx.txt | 22 ++ 1 file changed, 22 insertions(+) create mode 100644

[PATCH 2/2] iio: temperature: add support for mcp98xx sensors

2015-07-18 Thread Matt Ranostay
Add mcp98xx driver to allow temperature reading, and setting of upper and lower alert thresholds. Signed-off-by: Matt Ranostay mranos...@gmail.com --- drivers/iio/temperature/Kconfig | 10 + drivers/iio/temperature/Makefile | 1 + drivers/iio/temperature/mcp98xx.c | 588