diff options
author | Bo Shen <voice.shen@atmel.com> | 2013-11-15 11:12:34 +0800 |
---|---|---|
committer | Andreas Bießmann <andreas.devel@googlemail.com> | 2013-12-01 22:38:42 +0100 |
commit | e82265701f2972c7eb0e8742db973130bc99fd9c (patch) | |
tree | eccd92f313b7ede51d825879a1bf3af7cb104dc2 | |
parent | 7ac2e7c18708c352737fbd34d53ea176ca8173c0 (diff) | |
download | u-boot-imx-e82265701f2972c7eb0e8742db973130bc99fd9c.zip u-boot-imx-e82265701f2972c7eb0e8742db973130bc99fd9c.tar.gz u-boot-imx-e82265701f2972c7eb0e8742db973130bc99fd9c.tar.bz2 |
arm: atmel: sama5d3: correct the error define of DIV
Correct the error define of DIV.
Signed-off-by: Bo Shen <voice.shen@atmel.com>
Signed-off-by: Andreas Bießmann <andreas.devel@googlemail.com>
-rw-r--r-- | arch/arm/include/asm/arch-at91/at91_pmc.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/include/asm/arch-at91/at91_pmc.h b/arch/arm/include/asm/arch-at91/at91_pmc.h index a24971a..90a871c 100644 --- a/arch/arm/include/asm/arch-at91/at91_pmc.h +++ b/arch/arm/include/asm/arch-at91/at91_pmc.h @@ -126,8 +126,8 @@ typedef struct at91_pmc { #define AT91_PMC_MCKR_MDIV_MASK 0x00000300 #endif -#define AT91_PMC_MCKR_PLLADIV_1 0x00001000 -#define AT91_PMC_MCKR_PLLADIV_2 0x00002000 +#define AT91_PMC_MCKR_PLLADIV_1 0x00000000 +#define AT91_PMC_MCKR_PLLADIV_2 0x00001000 #define AT91_PMC_IXR_MOSCS 0x00000001 #define AT91_PMC_IXR_LOCKA 0x00000002 |