1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-23 16:01:42 +00:00

The Marvell PJ4B cpu family is armv7, not armv6.

This commit is contained in:
Ian Lepore 2014-08-31 15:23:49 +00:00
parent ccbefc2dfa
commit 46dd56e781
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=270878

View File

@ -135,13 +135,13 @@
#define ARM_MMU_GENERIC 0
#endif
#if defined(CPU_ARM1136) || defined(CPU_ARM1176) || defined(CPU_MV_PJ4B)
#if defined(CPU_ARM1136) || defined(CPU_ARM1176)
#define ARM_MMU_V6 1
#else
#define ARM_MMU_V6 0
#endif
#if defined(CPU_CORTEXA) || defined(CPU_KRAIT)
#if defined(CPU_CORTEXA) || defined(CPU_KRAIT) || defined(CPU_MV_PJ4B)
#define ARM_MMU_V7 1
#else
#define ARM_MMU_V7 0