aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-vexpress/ct-ca9x4.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/arm/mach-vexpress/ct-ca9x4.c')
-rw-r--r--arch/arm/mach-vexpress/ct-ca9x4.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/arch/arm/mach-vexpress/ct-ca9x4.c b/arch/arm/mach-vexpress/ct-ca9x4.c
index c833fd9505c5..6004f06cbde5 100644
--- a/arch/arm/mach-vexpress/ct-ca9x4.c
+++ b/arch/arm/mach-vexpress/ct-ca9x4.c
@@ -141,10 +141,18 @@ static struct clk osc1_clk = {
141 .rate = 24000000, 141 .rate = 24000000,
142}; 142};
143 143
144static struct clk ct_sp804_clk = {
145 .rate = 1000000,
146};
147
144static struct clk_lookup lookups[] = { 148static struct clk_lookup lookups[] = {
145 { /* CLCD */ 149 { /* CLCD */
146 .dev_id = "ct:clcd", 150 .dev_id = "ct:clcd",
147 .clk = &osc1_clk, 151 .clk = &osc1_clk,
152 }, { /* SP804 timers */
153 .dev_id = "sp804",
154 .con_id = "ct-timer1",
155 .clk = &ct_sp804_clk,
148 }, 156 },
149}; 157};
150 158