From cb00f8cae545f4ebd1c65125e5006531ebef820e Mon Sep 17 00:00:00 2001 From: Oleksandr Tymoshenko Date: Sun, 11 Oct 2009 21:28:56 +0000 Subject: [PATCH] - Fix CPU divisor mask Repored by: Luiz Otavio O Souza --- sys/mips/atheros/ar71xxreg.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/mips/atheros/ar71xxreg.h b/sys/mips/atheros/ar71xxreg.h index cc331d4c59d..3f6b50a97fb 100644 --- a/sys/mips/atheros/ar71xxreg.h +++ b/sys/mips/atheros/ar71xxreg.h @@ -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