diff options
Diffstat (limited to 'arch/arm/mach-nomadik/clock.c')
| -rw-r--r-- | arch/arm/mach-nomadik/clock.c | 15 | 
1 files changed, 11 insertions, 4 deletions
diff --git a/arch/arm/mach-nomadik/clock.c b/arch/arm/mach-nomadik/clock.c index 2c471fc451d..89f793adf77 100644 --- a/arch/arm/mach-nomadik/clock.c +++ b/arch/arm/mach-nomadik/clock.c @@ -32,7 +32,10 @@ void clk_disable(struct clk *clk)  }  EXPORT_SYMBOL(clk_disable); -/* We have a fixed clock alone, for now */ +static struct clk clk_24 = { +	.rate = 2400000, +}; +  static struct clk clk_48 = {  	.rate = 48 * 1000 * 1000,  }; @@ -50,6 +53,12 @@ static struct clk clk_default;  	}  static struct clk_lookup lookups[] = { +	{ +		.con_id		= "apb_pclk", +		.clk		= &clk_default, +	}, +	CLK(&clk_24, "mtu0"), +	CLK(&clk_24, "mtu1"),  	CLK(&clk_48, "uart0"),  	CLK(&clk_48, "uart1"),  	CLK(&clk_default, "gpio.0"), @@ -59,10 +68,8 @@ static struct clk_lookup lookups[] = {  	CLK(&clk_default, "rng"),  }; -static int __init clk_init(void) +int __init clk_init(void)  {  	clkdev_add_table(lookups, ARRAY_SIZE(lookups));  	return 0;  } - -arch_initcall(clk_init);  |