瀏覽代碼

ARM: davinci: fix incorrect pdctl next bit position

The PDCTL NEXT bit is incorrectly set to bit 1 instead of bit 0. This
patch fixes this issue

Signed-off-by: Murali Karicheri <m-karicheri2@ti.com>
Signed-off-by: Sekhar Nori <nsekhar@ti.com>
Murali Karicheri 13 年之前
父節點
當前提交
4a6e6a5eb3
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      arch/arm/mach-davinci/include/mach/psc.h

+ 1 - 1
arch/arm/mach-davinci/include/mach/psc.h

@@ -246,7 +246,7 @@
 #define MDSTAT_STATE_MASK	0x3f
 #define PDSTAT_STATE_MASK	0x1f
 #define MDCTL_FORCE		BIT(31)
-#define PDCTL_NEXT		BIT(1)
+#define PDCTL_NEXT		BIT(0)
 #define PDCTL_EPCGOOD		BIT(8)
 
 #ifndef __ASSEMBLER__