mirror of
https://github.com/Stichting-MINIX-Research-Foundation/u-boot.git
synced 2025-09-10 12:39:22 -04:00
Fix comment in common/soft_i2c.c
Patches by Peter Korsgaard/Tolunay Orkun, 26 May 2005
This commit is contained in:
parent
611125a292
commit
82d716fd0d
@ -2,6 +2,9 @@
|
|||||||
Changes since U-Boot 1.1.4:
|
Changes since U-Boot 1.1.4:
|
||||||
======================================================================
|
======================================================================
|
||||||
|
|
||||||
|
* Fix comment in common/soft_i2c.c
|
||||||
|
Patches by Peter Korsgaard/Tolunay Orkun, 26 May 2005
|
||||||
|
|
||||||
* Cleanup compiler warnings.
|
* Cleanup compiler warnings.
|
||||||
Patch by Greg Ungerer, 21 May 2005
|
Patch by Greg Ungerer, 21 May 2005
|
||||||
|
|
||||||
|
@ -288,7 +288,10 @@ int i2c_probe(uchar addr)
|
|||||||
{
|
{
|
||||||
int rc;
|
int rc;
|
||||||
|
|
||||||
/* perform 1 byte read transaction */
|
/*
|
||||||
|
* perform 1 byte write transaction with just address byte
|
||||||
|
* (fake write)
|
||||||
|
*/
|
||||||
send_start();
|
send_start();
|
||||||
rc = write_byte ((addr << 1) | 0);
|
rc = write_byte ((addr << 1) | 0);
|
||||||
send_stop();
|
send_stop();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user