Re: [U-Boot] A question about unconfigured pads check in omap24xx_i2c

2013-11-11 Thread Lubomir Popov
Hi Nikita, On 11-Nov-13 13:15, Nikita Kiryanov wrote: On 11/08/2013 11:26 PM, Lubomir Popov wrote: Hi Nikita, On 11/06/2013 03:19 PM, Lubomir Popov wrote: On 06-Nov-13 14:12, Nikita Kiryanov wrote: In drivers/i2c/omap24xx_i2c.c there are a few checks that attempt to detect unconfigured pads

Re: [U-Boot] A question about unconfigured pads check in omap24xx_i2c

2013-11-11 Thread Nikita Kiryanov
On 11/08/2013 11:26 PM, Lubomir Popov wrote: Hi Nikita, On 11/06/2013 03:19 PM, Lubomir Popov wrote: On 06-Nov-13 14:12, Nikita Kiryanov wrote: In drivers/i2c/omap24xx_i2c.c there are a few checks that attempt to detect unconfigured pads for the i2c bus in use. These checks are all in the for

Re: [U-Boot] A question about unconfigured pads check in omap24xx_i2c

2013-11-08 Thread Lubomir Popov
Hi Nikita, > On 11/06/2013 03:19 PM, Lubomir Popov wrote: >> On 06-Nov-13 14:12, Nikita Kiryanov wrote: >>> In drivers/i2c/omap24xx_i2c.c there are a few checks that attempt to >>> detect unconfigured pads for the i2c bus in use. These checks are >>> all in the form of >>> >>> if (status == I2C_ST

Re: [U-Boot] A question about unconfigured pads check in omap24xx_i2c

2013-11-08 Thread Nikita Kiryanov
On 11/06/2013 03:19 PM, Lubomir Popov wrote: On 06-Nov-13 14:12, Nikita Kiryanov wrote: In drivers/i2c/omap24xx_i2c.c there are a few checks that attempt to detect unconfigured pads for the i2c bus in use. These checks are all in the form of if (status == I2C_STAT_XRDY) { printf("unconfigur

Re: [U-Boot] A question about unconfigured pads check in omap24xx_i2c

2013-11-07 Thread Lubomir Popov
Heiko, On 07-Nov-13 10:04, Heiko Schocher wrote: Hello Lubomir, Am 07.11.2013 08:57, schrieb Lubomir Popov: Hi Heiko, On 07-Nov-13 7:14, Heiko Schocher wrote: Hello Lubomir, Am 06.11.2013 14:19, schrieb Lubomir Popov: On 06-Nov-13 14:12, Nikita Kiryanov wrote: In drivers/i2c/omap24xx_i2c.

Re: [U-Boot] A question about unconfigured pads check in omap24xx_i2c

2013-11-07 Thread Heiko Schocher
Hello Lubomir, Am 07.11.2013 08:57, schrieb Lubomir Popov: Hi Heiko, On 07-Nov-13 7:14, Heiko Schocher wrote: Hello Lubomir, Am 06.11.2013 14:19, schrieb Lubomir Popov: On 06-Nov-13 14:12, Nikita Kiryanov wrote: In drivers/i2c/omap24xx_i2c.c there are a few checks that attempt to detect unc

Re: [U-Boot] A question about unconfigured pads check in omap24xx_i2c

2013-11-06 Thread Lubomir Popov
Hi Heiko, On 07-Nov-13 7:14, Heiko Schocher wrote: Hello Lubomir, Am 06.11.2013 14:19, schrieb Lubomir Popov: On 06-Nov-13 14:12, Nikita Kiryanov wrote: In drivers/i2c/omap24xx_i2c.c there are a few checks that attempt to detect unconfigured pads for the i2c bus in use. These checks are all i

Re: [U-Boot] A question about unconfigured pads check in omap24xx_i2c

2013-11-06 Thread Heiko Schocher
Hello Lubomir, Am 06.11.2013 14:19, schrieb Lubomir Popov: On 06-Nov-13 14:12, Nikita Kiryanov wrote: In drivers/i2c/omap24xx_i2c.c there are a few checks that attempt to detect unconfigured pads for the i2c bus in use. These checks are all in the form of if (status == I2C_STAT_XRDY) { printf(

Re: [U-Boot] A question about unconfigured pads check in omap24xx_i2c

2013-11-06 Thread Lubomir Popov
On 06-Nov-13 14:12, Nikita Kiryanov wrote: In drivers/i2c/omap24xx_i2c.c there are a few checks that attempt to detect unconfigured pads for the i2c bus in use. These checks are all in the form of if (status == I2C_STAT_XRDY) { printf("unconfigured pads\n"); return -1; } This check seem

[U-Boot] A question about unconfigured pads check in omap24xx_i2c

2013-11-06 Thread Nikita Kiryanov
In drivers/i2c/omap24xx_i2c.c there are a few checks that attempt to detect unconfigured pads for the i2c bus in use. These checks are all in the form of if (status == I2C_STAT_XRDY) { printf("unconfigured pads\n"); return -1; } This check seems peculiar to me since the meaning o