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]

error in flashiodev.c


Hi,

there is a trivial error in io/flash/current/src/flashiodev.c


diff -ru io_orig/flash/current/ChangeLog io/flash/current/ChangeLog
--- io_orig/flash/current/ChangeLog	Wed Mar 19 15:05:48 2003
+++ io/flash/current/ChangeLog	Wed Mar 19 15:04:56 2003
@@ -1,3 +1,7 @@
+2003-03-19  Thomas Koeller <thomas dot koeller at baslerweb dot com>
+
+	* src/flashiodev.c: Fixed trivial error.
+
 2003-03-03  Knud Woehler <knud dot woehler at microplex dot de>
 
 	* src/flashiodev.c:
diff -ru io_orig/flash/current/src/flashiodev.c
io/flash/current/src/flashiodev.c
--- io_orig/flash/current/src/flashiodev.c	Wed Mar 19 14:47:44 2003
+++ io/flash/current/src/flashiodev.c	Wed Mar 19 14:49:41 2003
@@ -102,7 +102,7 @@
 #else
 		dev->start = (char *)flash_info.start +
CYGNUM_IO_FLASH_BLOCK_OFFSET_1;
 		dev->end = (char *)flash_info.start +
CYGNUM_IO_FLASH_BLOCK_OFFSET_1 + 
-                           CYGNUM_IO_FLASH_BLOCK_LENGTH_1)
+                           CYGNUM_IO_FLASH_BLOCK_LENGTH_1;
 #endif
         return true;
 	}


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