diff options
author | jhb <jhb@FreeBSD.org> | 2012-03-29 16:48:36 +0000 |
---|---|---|
committer | jhb <jhb@FreeBSD.org> | 2012-03-29 16:48:36 +0000 |
commit | 42c95c38919ca89dda8cabd3e43b847c44271613 (patch) | |
tree | 080e1661535cede1fd3bf6b96e0bd2c371f4c057 /sys/mips/include | |
parent | e31fbc1ed5c7d4da964a2d6d27ec0449003dda9b (diff) | |
download | FreeBSD-src-42c95c38919ca89dda8cabd3e43b847c44271613.zip FreeBSD-src-42c95c38919ca89dda8cabd3e43b847c44271613.tar.gz |
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
Diffstat (limited to 'sys/mips/include')
-rw-r--r-- | sys/mips/include/vm.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/mips/include/vm.h b/sys/mips/include/vm.h index b1e964f..658eb1c 100644 --- a/sys/mips/include/vm.h +++ b/sys/mips/include/vm.h @@ -32,7 +32,7 @@ #include <machine/pte.h> /* 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_ */ |