svn commit: r204121 - head/sys/arm/include

Kevin Lo kevlo at FreeBSD.org
Sat Feb 20 14:52:08 UTC 2010


Author: kevlo
Date: Sat Feb 20 14:52:07 2010
New Revision: 204121
URL: http://svn.freebsd.org/changeset/base/204121

Log:
  Correct both FA526/FA626TE cpu ids since the cpu id is always
  masked with 0xfffffff0

Modified:
  head/sys/arm/include/armreg.h

Modified: head/sys/arm/include/armreg.h
==============================================================================
--- head/sys/arm/include/armreg.h	Sat Feb 20 14:13:47 2010	(r204120)
+++ head/sys/arm/include/armreg.h	Sat Feb 20 14:52:07 2010	(r204121)
@@ -151,8 +151,8 @@
 #define CPU_ID_MV88FR131	0x56251310 /* Marvell Feroceon 88FR131 Core */
 #define CPU_ID_MV88FR571_VD	0x56155710 /* Marvell Feroceon 88FR571-VD Core (ID from datasheet) */
 #define	CPU_ID_MV88FR571_41	0x41159260 /* Marvell Feroceon 88FR571-VD Core (actual ID from CPU reg) */
-#define	CPU_ID_FA526		0x66015261
-#define	CPU_ID_FA626TE		0x66056261
+#define	CPU_ID_FA526		0x66015260
+#define	CPU_ID_FA626TE		0x66056260
 #define CPU_ID_SA1110		0x6901b110
 #define CPU_ID_IXP1200		0x6901c120
 #define CPU_ID_80200		0x69052000


More information about the svn-src-all mailing list