From 5e1a7cc71ed074fcb1482d26178e810b74d850b3 Mon Sep 17 00:00:00 2001 From: John Baldwin Date: Thu, 29 Mar 2012 16:48:36 +0000 Subject: [PATCH] Use VM_MEMATTR_UNCACHEABLE for the constant for UC memory rather than VM_MEMATTR_UNCACHED. VM_MEMATTR_UNCACHEABLE is the constant other platforms use. MFC after: 2 weeks --- sys/mips/include/vm.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/mips/include/vm.h b/sys/mips/include/vm.h index b1e964f2fb6..658eb1ceb87 100644 --- a/sys/mips/include/vm.h +++ b/sys/mips/include/vm.h @@ -32,7 +32,7 @@ #include /* Memory attributes. */ -#define VM_MEMATTR_UNCACHED ((vm_memattr_t)PTE_C_UNCACHED) +#define VM_MEMATTR_UNCACHEABLE ((vm_memattr_t)PTE_C_UNCACHED) #define VM_MEMATTR_DEFAULT ((vm_memattr_t)PTE_C_CACHE) #endif /* !_MACHINE_VM_H_ */