ARM: davinci: correct MDSTAT_STATE_MASK
authorSergei Shtylyov <sshtylyov@ru.mvista.com>
Fri, 8 Jul 2011 15:24:57 +0000 (19:24 +0400)
committerSekhar Nori <nsekhar@ti.com>
Wed, 7 Sep 2011 08:53:02 +0000 (14:23 +0530)
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>
arch/arm/mach-davinci/include/mach/psc.h

index 47fd0bc..fa59c09 100644 (file)
 #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__