diff options
author | Sergei Shtylyov <sshtylyov@ru.mvista.com> | 2011-07-08 19:24:57 +0400 |
---|---|---|
committer | Sekhar Nori <nsekhar@ti.com> | 2011-09-07 14:23:02 +0530 |
commit | c08748005d56084a205f5c5db5f211b07a97a9be (patch) | |
tree | 6f9bb3f7fa5930578faaf6e191bff38086b05852 /arch | |
parent | 810198bc9c109489dfadc57131c5183ce6ad2d7d (diff) |
ARM: davinci: correct MDSTAT_STATE_MASK
MDSTAT.STATE occupies bits 0..5 according to all available documentation, so fix
the #define MDSTAT_STATE_MASK at last. Using the wrong value seems to have been
harmless though...
Signed-off-by: Sergei Shtylyov <sshtylyov@ru.mvista.com>
Signed-off-by: Sekhar Nori <nsekhar@ti.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/mach-davinci/include/mach/psc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-davinci/include/mach/psc.h b/arch/arm/mach-davinci/include/mach/psc.h index 47fd0bc3d3e7..fa59c097223d 100644 --- a/arch/arm/mach-davinci/include/mach/psc.h +++ b/arch/arm/mach-davinci/include/mach/psc.h @@ -243,7 +243,7 @@ #define PSC_STATE_DISABLE 2 #define PSC_STATE_ENABLE 3 -#define MDSTAT_STATE_MASK 0x1f +#define MDSTAT_STATE_MASK 0x3f #define MDCTL_FORCE BIT(31) #ifndef __ASSEMBLER__ |