Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 231463
b: refs/heads/master
c: 1526631
h: refs/heads/master
i:
  231461: 134e433
  231459: d6b1338
  231455: 4a72378
v: v3
  • Loading branch information
Kukjin Kim committed Jan 4, 2011
1 parent f0d8491 commit 74037ae
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: e89c5d07cd523391d859cdf689fd2cb673269e85
refs/heads/master: 1526631d0255d63b981a374a6623893032b04af0
16 changes: 3 additions & 13 deletions trunk/arch/arm/mach-s5p64x0/clock-s5p6450.c
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ static struct clksrc_clk clk_pclk_low = {
* recommended to keep the following clocks disabled until the driver requests
* for enabling the clock.
*/
static struct clk init_clocks_disable[] = {
static struct clk init_clocks_off[] = {
{
.name = "usbhost",
.id = -1,
Expand Down Expand Up @@ -633,8 +633,6 @@ void __init_or_cpufreq s5p6450_setup_clocks(void)

void __init s5p6450_register_clocks(void)
{
struct clk *clkp;
int ret;
int ptr;

for (ptr = 0; ptr < ARRAY_SIZE(sysclks); ptr++)
Expand All @@ -643,16 +641,8 @@ void __init s5p6450_register_clocks(void)
s3c_register_clksrc(clksrcs, ARRAY_SIZE(clksrcs));
s3c_register_clocks(init_clocks, ARRAY_SIZE(init_clocks));

clkp = init_clocks_disable;
for (ptr = 0; ptr < ARRAY_SIZE(init_clocks_disable); ptr++, clkp++) {

ret = s3c24xx_register_clock(clkp);
if (ret < 0) {
printk(KERN_ERR "Failed to register clock %s (%d)\n",
clkp->name, ret);
}
(clkp->enable)(clkp, 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 74037ae

Please sign in to comment.