Skip to content

Commit

Permalink
ARM: Merge fixes-s3c64xx
Browse files Browse the repository at this point in the history
Merge branch 'fixes-s3c64xx' into fixes-s3c-2632-rc5
  • Loading branch information
Ben Dooks committed Oct 28, 2009
2 parents 60e5c1b + e179ac0 commit 8e8821e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arch/arm/plat-s3c64xx/include/plat/regs-clock.h
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@
#define S3C6400_CLKDIV0_HCLK_SHIFT (8)
#define S3C6400_CLKDIV0_MPLL_MASK (0x1 << 4)
#define S3C6400_CLKDIV0_MPLL_SHIFT (4)
#define S3C6400_CLKDIV0_ARM_MASK (0x3 << 0)
#define S3C6410_CLKDIV0_ARM_MASK (0x7 << 0)
#define S3C6400_CLKDIV0_ARM_MASK (0x7 << 0)
#define S3C6410_CLKDIV0_ARM_MASK (0xf << 0)
#define S3C6400_CLKDIV0_ARM_SHIFT (0)

/* CLKDIV1 */
Expand Down
3 changes: 3 additions & 0 deletions arch/arm/plat-s3c64xx/s3c6400-clock.c
Original file line number Diff line number Diff line change
Expand Up @@ -677,6 +677,9 @@ void __init_or_cpufreq s3c6400_setup_clocks(void)

printk(KERN_DEBUG "%s: xtal is %ld\n", __func__, xtal);

/* For now assume the mux always selects the crystal */
clk_ext_xtal_mux.parent = xtal_clk;

epll = s3c6400_get_epll(xtal);
mpll = s3c6400_get_pll(xtal, __raw_readl(S3C_MPLL_CON));
apll = s3c6400_get_pll(xtal, __raw_readl(S3C_APLL_CON));
Expand Down

0 comments on commit 8e8821e

Please sign in to comment.