Re: [RFT PATCH 1/2] i2c: tegra: update CONFIG_LOAD for new conifiguration

2015-07-16 Thread Laxman Dewangan
Wolfram, On Thursday 09 July 2015 02:06 AM, Stephen Warren wrote: On 06/30/2015 04:54 AM, Laxman Dewangan wrote: Once the new configuration is set on the conifg register of I2C controller, it is require to update the CONFIG_LOAD register to transfer the new SW configuration to actual HW

Re: How to encode being an I2C slave in DT?

2015-07-16 Thread Andrey Danin
Hello Wolfram, On 19.05.2015 9:16, Wolfram Sang wrote: I give in to the flag idea. I also noticed that we'd need another flag anyhow to mark 10 bit addresses. I am still thinking between using two address-cells in that case (clean seperation between address and flags) or to encode the flags

Re: [PATCH] i2c-parport: Add VCT-jig adapter

2015-07-16 Thread Jean Delvare
On Mon, 13 Jul 2015 19:31:12 +0200, Ondrej Zary wrote: Add support for VCT-jig parallel port I2C adapter to i2c-parport. The adapter schematic can be found here (in the RAR file): http://remont-aud.net/shop/22/desc/vct-jig-komplekt-dlja-samostojatelnoj-sborki Signed-off-by: Ondrej Zary

Re: [Patch v1] i2c: imx: implement bus recovery

2015-07-16 Thread Jan Lübbe
On Di, 2015-07-14 at 08:12 +, Gao Pandy wrote: --- a/Documentation/devicetree/bindings/i2c/i2c-imx.txt +++ b/Documentation/devicetree/bindings/i2c/i2c-imx.txt @@ -14,6 +14,8 @@ Optional properties: The absence of the propoerty indicates the default frequency 100 kHz. -

[PATCH] i2c: s3c2410: remove unused variable

2015-07-16 Thread Laurent Navet
ret is assigned zero and just used to return. remove it. Found by using coccinelle. Signed-off-by: Laurent Navet laurent.na...@gmail.com --- drivers/i2c/busses/i2c-s3c2410.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/drivers/i2c/busses/i2c-s3c2410.c

Re: [PATCH] i2c: s3c2410: remove unused variable

2015-07-16 Thread Wolfram Sang
On Thu, Jul 16, 2015 at 10:36:16PM +0200, Laurent Navet wrote: ret is assigned zero and just used to return. remove it. Found by using coccinelle. Signed-off-by: Laurent Navet laurent.na...@gmail.com Why not make it void? signature.asc Description: Digital signature

RE: [Patch v1] i2c: imx: implement bus recovery

2015-07-16 Thread Gao Pandy
From: Jan Lübbe mailto:j...@pengutronix.de Sent: Thursday, July 16, 2015 8:58 PM To: Gao Pan-B54642 Cc: Uwe Kleine-König; w...@the-dreams.de; linux-i2c@vger.kernel.org; Li Frank-B20596; Duan Fugang-B38611 Subject: Re: [Patch v1] i2c: imx: implement bus recovery On Di, 2015-07-14 at 08:12