svn commit: r197973 - projects/mips/sys/mips/atheros

Oleksandr Tymoshenko gonzo at FreeBSD.org
Sun Oct 11 21:28:57 UTC 2009


Author: gonzo
Date: Sun Oct 11 21:28:56 2009
New Revision: 197973
URL: http://svn.freebsd.org/changeset/base/197973

Log:
  - Fix CPU divisor mask
  
  Repored by: Luiz Otavio O Souza

Modified:
  projects/mips/sys/mips/atheros/ar71xxreg.h

Modified: projects/mips/sys/mips/atheros/ar71xxreg.h
==============================================================================
--- projects/mips/sys/mips/atheros/ar71xxreg.h	Sun Oct 11 21:25:47 2009	(r197972)
+++ projects/mips/sys/mips/atheros/ar71xxreg.h	Sun Oct 11 21:28:56 2009	(r197973)
@@ -143,7 +143,7 @@
 #define		PLL_DDR_DIV_SEL_SHIFT		18
 #define		PLL_DDR_DIV_SEL_MASK		3
 #define		PLL_CPU_DIV_SEL_SHIFT		16
-#define		PLL_CPU_DIV_SEL_MASK		2
+#define		PLL_CPU_DIV_SEL_MASK		3
 #define		PLL_LOOP_BW_SHIFT		12
 #define		PLL_LOOP_BW_MASK		0xf
 #define		PLL_DIV_IN_SHIFT		10


More information about the svn-src-projects mailing list