Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ffb7a80f authored by Tony Lindgren's avatar Tony Lindgren
Browse files

ARM: OMAP: Fix gpt2_ick clock bit



CM_ICLKEN1_CORE bit should be 4, not 0 as noted by
Richard Woodruff.

Signed-off-by: default avatarTony Lindgren <tony@atomide.com>
parent 07116152
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -1062,7 +1062,7 @@ static struct clk gpt2_ick = {
	.parent		= &l4_ck,
	.parent		= &l4_ck,
	.flags		= CLOCK_IN_OMAP242X | CLOCK_IN_OMAP243X,
	.flags		= CLOCK_IN_OMAP242X | CLOCK_IN_OMAP243X,
	.enable_reg	= (void __iomem *)&CM_ICLKEN1_CORE,	/* Bit4 */
	.enable_reg	= (void __iomem *)&CM_ICLKEN1_CORE,	/* Bit4 */
	.enable_bit	= 0,
	.enable_bit	= 4,
	.recalc		= &omap2_followparent_recalc,
	.recalc		= &omap2_followparent_recalc,
};
};