Update of /cvsroot/linux-mips/linux/drivers/char
In directory usw-pr-cvs1:/tmp/cvs-serv31229
Modified Files:
mem.c
Log Message:
Move MIPS pgprot_noncached() to <asm/pgtable.h>.
Index: mem.c
===================================================================
RCS file: /cvsroot/linux-mips/linux/drivers/char/mem.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** mem.c 2001/08/25 06:24:45 1.3
--- mem.c 2001/09/06 16:53:06 1.4
***************
*** 154,159 ****
else if (MMU_IS_040 || MMU_IS_060)
prot = (prot & _CACHEMASK040) | _PAGE_NOCACHE_S;
- #elif defined(__mips__)
- prot = (prot & ~_CACHE_MASK) | _CACHE_UNCACHED;
#endif
--- 154,157 ----
|