Author: ian Date: Tue Nov 5 04:06:29 2013 New Revision: 257672 URL: http://svnweb.freebsd.org/changeset/base/257672
Log: Make PTE_DEVICE a synonym for PTE_NOCACHE on armv4, to make it easier to share the same code on both architectures. Modified: head/sys/arm/include/pmap.h Modified: head/sys/arm/include/pmap.h ============================================================================== --- head/sys/arm/include/pmap.h Tue Nov 5 03:25:10 2013 (r257671) +++ head/sys/arm/include/pmap.h Tue Nov 5 04:06:29 2013 (r257672) @@ -67,6 +67,7 @@ #else #define PTE_NOCACHE 1 #define PTE_CACHE 2 +#define PTE_DEVICE PTE_NOCACHE #define PTE_PAGETABLE 3 #endif _______________________________________________ [email protected] mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-head To unsubscribe, send any mail to "[email protected]"
