Re: [U-Boot] [PATCH] I2C: S3C24X0: Bug fixes in i2c_transfer

2013-03-11 Thread Rajeshwari Birje
Hi Heiko, Do let me know if you have any comments on this patch. Would you consider it for I2C branch or should it go through u-boot-samsung? Regards, Rajeshwari On Wed, Mar 6, 2013 at 2:57 PM, Hung-ying Tyan wrote: > On Tue, Feb 19, 2013 at 8:19 PM, Rajeshwari Shinde > wrote: > >> This patch

Re: [U-Boot] [PATCH] I2C: S3C24X0: Bug fixes in i2c_transfer

2013-03-06 Thread Hung-ying Tyan
On Tue, Feb 19, 2013 at 8:19 PM, Rajeshwari Shinde wrote: > This patch corrects the following issues > > 1) Write the correct M/T Stop value to I2CSTAT after i2c write. >According to the spec, after finish the data transmission, we should >write a M/T Stop (I2C_MODE_MT | I2C_TXRX_ENA) to

[U-Boot] [PATCH] I2C: S3C24X0: Bug fixes in i2c_transfer

2013-02-19 Thread Rajeshwari Shinde
This patch corrects the following issues 1) Write the correct M/T Stop value to I2CSTAT after i2c write. According to the spec, after finish the data transmission, we should write a M/T Stop (I2C_MODE_MT | I2C_TXRX_ENA) to I2CSTAT instead of a M/R Stop (I2C_MODE_MR | I2C_TXRX_ENA). 2) Not