diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2000-06-20 01:06:27 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2000-06-20 01:06:27 +0000 |
commit | 68a1cd72aca3ddd79de33703a1760887e3dbe164 (patch) | |
tree | 128a3c32d6b8883de3fff9a70fd7a68dc643aa55 /include/asm-mips/pgtable.h | |
parent | 6d403070f28cd44860fdb3a53be5da0275c65cf4 (diff) |
R3000 cache handling. flush_icache_page now actually flushes
something.
Diffstat (limited to 'include/asm-mips/pgtable.h')
-rw-r--r-- | include/asm-mips/pgtable.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/include/asm-mips/pgtable.h b/include/asm-mips/pgtable.h index a21e78b04..b2d3ed058 100644 --- a/include/asm-mips/pgtable.h +++ b/include/asm-mips/pgtable.h @@ -1,5 +1,4 @@ -/* $Id: pgtable.h,v 1.31 2000/03/02 02:37:13 ralf Exp $ - * +/* * This file is subject to the terms and conditions of the GNU General Public * License. See the file "COPYING" in the main directory of this archive * for more details. @@ -43,7 +42,7 @@ extern void (*_flush_page_to_ram)(struct page * page); #define flush_page_to_ram(page) _flush_page_to_ram(page) #define flush_icache_range(start, end) flush_cache_all() -#define flush_icache_page(start,page) do { } while(0) +#define flush_icache_page(start,page) flush_cache_page(vma, page) /* |