Skip to content

Commit

Permalink
ARM: S3C24XX: Fix clkout mpx error
Browse files Browse the repository at this point in the history
Bug correction: CLK Outputs cannot have XTAL as parent

Signed-off-by: Davide Rizzo <elpa.rizzo@gmail.com>
[ben-linux@fluff.org: updated patch subject]
Signed-off-by: Ben Dooks <ben-linux@fluff.org>
  • Loading branch information
Davide Rizzo authored and Ben Dooks committed Aug 13, 2009
1 parent a219dc4 commit 48ec45e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/arm/plat-s3c24xx/clock-dclk.c
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ static int s3c24xx_clkout_setparent(struct clk *clk, struct clk *parent)

/* calculate the MISCCR setting for the clock */

if (parent == &clk_xtal)
if (parent == &clk_mpll)
source = S3C2410_MISCCR_CLK0_MPLL;
else if (parent == &clk_upll)
source = S3C2410_MISCCR_CLK0_UPLL;
Expand Down

0 comments on commit 48ec45e

Please sign in to comment.