Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 231462
b: refs/heads/master
c: e89c5d0
h: refs/heads/master
v: v3
  • Loading branch information
Kukjin Kim committed Jan 4, 2011
1 parent 134e433 commit f0d8491
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 14 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 9f6bb3f5675a22fdcebb9565ec2122a2b2903aa2
refs/heads/master: e89c5d07cd523391d859cdf689fd2cb673269e85
16 changes: 3 additions & 13 deletions trunk/arch/arm/mach-s5p6442/clock.c
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ void __init_or_cpufreq s5p6442_setup_clocks(void)
clk_pclkd1.rate = pclkd1;
}

static struct clk init_clocks_disable[] = {
static struct clk init_clocks_off[] = {
{
.name = "pdma",
.id = -1,
Expand Down Expand Up @@ -408,23 +408,13 @@ static struct clk *clks[] __initdata = {

void __init s5p6442_register_clocks(void)
{
struct clk *clkptr;
int i, ret;

s3c24xx_register_clocks(clks, ARRAY_SIZE(clks));

s3c_register_clksrc(clksrcs, ARRAY_SIZE(clksrcs));
s3c_register_clocks(init_clocks, ARRAY_SIZE(init_clocks));

clkptr = init_clocks_disable;
for (i = 0; i < ARRAY_SIZE(init_clocks_disable); i++, clkptr++) {
ret = s3c24xx_register_clock(clkptr);
if (ret < 0) {
printk(KERN_ERR "Fail to register clock %s (%d)\n",
clkptr->name, ret);
} else
(clkptr->enable)(clkptr, 0);
}
s3c_register_clocks(init_clocks_off, ARRAY_SIZE(init_clocks_off));
s3c_disable_clocks(init_clocks_off, ARRAY_SIZE(init_clocks_off));

s3c_pwmclk_init();
}

0 comments on commit f0d8491

Please sign in to comment.