[xtensa-cvscommit] linux/arch/xtensa/mm cache.c,1.6,1.7
Brought to you by:
zankel
|
From: <jn...@us...> - 2003-02-28 23:18:56
|
Update of /cvsroot/xtensa/linux/arch/xtensa/mm
In directory sc8-pr-cvs1:/tmp/cvs-serv8277
Modified Files:
cache.c
Log Message:
Fixed a couple more occurrences of XCHALDCACHE where it
should have been XCHAL_DCACHE. The affected regions of
code worked regardless though, because on the current
Xtensa implementation, the dcache_region_writeback_inv
and dcache_region_invalidate do exactly the same thing.
Index: cache.c
===================================================================
RCS file: /cvsroot/xtensa/linux/arch/xtensa/mm/cache.c,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** cache.c 28 Feb 2003 22:59:36 -0000 1.6
--- cache.c 28 Feb 2003 23:18:49 -0000 1.7
***************
*** 205,209 ****
unsigned long flags;
save_and_cli(flags);
! #if defined(XCHALDCACHE_IS_WRITEBACK)
xthal_dcache_region_writeback_inv((void *)start, end - start);
#else
--- 205,209 ----
unsigned long flags;
save_and_cli(flags);
! #if defined(XCHAL_DCACHE_IS_WRITEBACK)
xthal_dcache_region_writeback_inv((void *)start, end - start);
#else
***************
*** 254,258 ****
save_and_cli(flags);
#if 1
! #if defined(XCHALDCACHE_IS_WRITEBACK)
xthal_dcache_region_writeback_inv((void *)addr, PAGE_SIZE);
#else
--- 254,258 ----
save_and_cli(flags);
#if 1
! #if defined(XCHAL_DCACHE_IS_WRITEBACK)
xthal_dcache_region_writeback_inv((void *)addr, PAGE_SIZE);
#else
|