aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-shmobile/clock-sh7367.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/arm/mach-shmobile/clock-sh7367.c')
-rw-r--r--arch/arm/mach-shmobile/clock-sh7367.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/arch/arm/mach-shmobile/clock-sh7367.c b/arch/arm/mach-shmobile/clock-sh7367.c
index 3b2e3f2fc7ea..58bd54e1113a 100644
--- a/arch/arm/mach-shmobile/clock-sh7367.c
+++ b/arch/arm/mach-shmobile/clock-sh7367.c
@@ -70,11 +70,18 @@ static struct clk r_clk = {
70 .rate = 32768, 70 .rate = 32768,
71}; 71};
72 72
73/* a static usb0 for now - enough to get r8a66597 working */
74static struct clk usb0_clk = {
75 .name = "usb0",
76};
77
73static struct clk_lookup lookups[] = { 78static struct clk_lookup lookups[] = {
74 { 79 {
75 .clk = &peripheral_clk, 80 .clk = &peripheral_clk,
76 }, { 81 }, {
77 .clk = &r_clk, 82 .clk = &r_clk,
83 }, {
84 .clk = &usb0_clk,
78 } 85 }
79}; 86};
80 87