Index: packages/io/flash/current/ChangeLog =================================================================== RCS file: /cvs/ecos/ecos/packages/io/flash/current/ChangeLog,v retrieving revision 1.26 diff -u -5 -p -r1.26 ChangeLog --- packages/io/flash/current/ChangeLog 19 Mar 2003 14:14:56 -0000 1.26 +++ packages/io/flash/current/ChangeLog 27 Mar 2003 18:43:25 -0000 @@ -1,5 +1,12 @@ +2003-03-27 Patrick Doyle + + * include/flash.h (HAL_FLASH_CACHES_OFF): Removed overzealous + calls to 'HAL_DCACHE_INVALIDATE_ALL()' and + 'HAL_ICACHE_INVALIDATE_ALL()'. + + 2003-03-19 Thomas Koeller * src/flashiodev.c: Fixed trivial error. 2003-03-03 Knud Woehler Index: packages/io/flash/current/include/flash.h =================================================================== RCS file: /cvs/ecos/ecos/packages/io/flash/current/include/flash.h,v retrieving revision 1.15 diff -u -5 -p -r1.15 flash.h --- packages/io/flash/current/include/flash.h 23 May 2002 23:06:14 -0000 1.15 +++ packages/io/flash/current/include/flash.h 27 Mar 2003 18:43:25 -0000 @@ -202,13 +202,11 @@ externC cyg_bool plf_flash_query_soft_wp #define HAL_FLASH_CACHES_OFF(_d_, _i_) \ CYG_MACRO_START \ _i_ = 0; /* avoids warning */ \ HAL_DCACHE_IS_ENABLED(_d_); \ HAL_DCACHE_SYNC(); \ - HAL_DCACHE_INVALIDATE_ALL(); \ HAL_DCACHE_DISABLE(); \ - HAL_ICACHE_INVALIDATE_ALL(); \ CYG_MACRO_END #define HAL_FLASH_CACHES_ON(_d_, _i_) \ CYG_MACRO_START \ if (_d_) HAL_DCACHE_ENABLE(); \