Skip to content

Commit

Permalink
ARM: davinci: fix incorrect pdctl next bit position
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Murali Karicheri authored and Sekhar Nori committed Apr 18, 2012
1 parent 0034102 commit 4a6e6a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/arm/mach-davinci/include/mach/psc.h
Original file line number Diff line number Diff line change
Expand Up @@ -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__
Expand Down

0 comments on commit 4a6e6a5

Please sign in to comment.