This is the mail archive of the ecos-patches@sources.redhat.com mailing list for the eCos project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

I2C cyg_i2c_stop -> cyg_i2c_transaction_stop


Hi,

The following patch renames the cyg_i2c_stop function to
cyg_i2c_transaction_stop to match the prototype in i2c.h.

Index: packages/io/i2c/current/ChangeLog
===================================================================
RCS file: /cvs/ecos/ecos/packages/io/i2c/current/ChangeLog,v
retrieving revision 1.2
diff -u -r1.2 ChangeLog
--- packages/io/i2c/current/ChangeLog	21 Apr 2005 19:04:57 -0000	1.2
+++ packages/io/i2c/current/ChangeLog	28 Apr 2005 12:31:24 -0000
@@ -1,3 +1,8 @@
+2005-04-28  Peter Korsgaard  <jacmet@sunsite.dk>
+
+	* src/i2c.cxx: Renamed cyg_i2c_stop to cyg_i2c_transaction_stop to
+	match header file.	
+
 2005-04-21  Andrew Lunn  <andrew.lunn@ascom.ch>
 
 	* doc/i2c.sgml: Replaced a _ with a - to keep jade happy.
Index: packages/io/i2c/current/src/i2c.cxx
===================================================================
RCS file: /cvs/ecos/ecos/packages/io/i2c/current/src/i2c.cxx,v
retrieving revision 1.1
diff -u -r1.1 i2c.cxx
--- packages/io/i2c/current/src/i2c.cxx	20 Apr 2005 12:25:28 -0000	1.1
+++ packages/io/i2c/current/src/i2c.cxx	28 Apr 2005 12:31:24 -0000
@@ -216,7 +216,7 @@
 }
 
 extern "C" void
-cyg_i2c_stop(const cyg_i2c_device* dev)
+cyg_i2c_transaction_stop(const cyg_i2c_device* dev)
 {
     cyg_i2c_bus*    bus;
     
-- 
Bye, Peter Korsgaard

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]