Re: [PATCH] i2c_omap: correct OMAP_I2C_SYSC_REG offset

2011-12-09 Thread Kevin Hilman
Ben, [...] >>> Shubhrajyoti/Jon, any objections to me queuing this fix for v3.2 (and >>> stable.) It would just mean rebasing your other fixes and cleanup >>> series on top of this. >> >> I have no issue with that and I am in favour of getting the fix in now. > I too have no issues. I've queued

Re: [PATCH] i2c_omap: correct OMAP_I2C_SYSC_REG offset

2011-12-09 Thread Kevin Hilman
Shubhrajyoti writes: > On Friday 09 December 2011 01:01 AM, Jon Hunter wrote: >> Hi Kevin, >> >> On 12/8/2011 12:12, Kevin Hilman wrote: >>> Alexander Aring writes: >>> Correct OMAP_I2C_SYSC_REG offset in omap4 register map. Offset 0x20 is reserved and OMAP_I2C_SYSC_REG has 0x10 as off

Product Order

2011-12-09 Thread
Hello, I am Manager of SIMKINS LTD. USA, My company is interested in the purchase of your products. Kindly send me an email with details of: *Minimum Order Quantity *Your delivery time *Payment terms *And your products warranty I await to hear from you urgently Mr Stefan Al Simkins. Purchasin

[PATCH] i2c: i2c-s3c2410: Add a cpu_relax() to busy wait for bus idle

2011-12-09 Thread Mark Brown
Be a bit more friendly. Signed-off-by: Mark Brown --- drivers/i2c/busses/i2c-s3c2410.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/drivers/i2c/busses/i2c-s3c2410.c b/drivers/i2c/busses/i2c-s3c2410.c index 065c316..acda56e1 100644 --- a/drivers/i2c/busses/i2c-s3c2410.

[PATCH] i2c-s3c2410: Fix return code of s3c24xx_i2c_parse_dt_gpio

2011-12-09 Thread Tushar Behera
s3c24xx_i2c_parse_dt_gpio is called when cfg_gpio is not defined in the platform data of the i2c device. When DT is not enabled, the above function always returns -EINVAL. Since there can be some i2c devices which don't need to configure any gpio lines, the probe of such devices would fail here. Ch