Commit 2169bc1b authored by Paul Mundt's avatar Paul Mundt

sh: sh7366 clock string death.

Kills off clock string usage, using the new function clock definition
instead.
Signed-off-by: default avatarPaul Mundt <lethal@linux-sh.org>
parent 5afdd0d9
...@@ -158,8 +158,8 @@ static struct clk mstp_clks[] = { ...@@ -158,8 +158,8 @@ static struct clk mstp_clks[] = {
MSTP("sh0", &div4_clks[DIV4_P], MSTPCR0, 20, 0), MSTP("sh0", &div4_clks[DIV4_P], MSTPCR0, 20, 0),
MSTP("hudi0", &div4_clks[DIV4_P], MSTPCR0, 19, 0), MSTP("hudi0", &div4_clks[DIV4_P], MSTPCR0, 19, 0),
MSTP("ubc0", &div4_clks[DIV4_P], MSTPCR0, 17, 0), MSTP("ubc0", &div4_clks[DIV4_P], MSTPCR0, 17, 0),
MSTP("tmu0", &div4_clks[DIV4_P], MSTPCR0, 15, 0), MSTP("tmu_fck", &div4_clks[DIV4_P], MSTPCR0, 15, 0),
MSTP("cmt0", &r_clk, MSTPCR0, 14, 0), MSTP("cmt_fck", &r_clk, MSTPCR0, 14, 0),
MSTP("rwdt0", &r_clk, MSTPCR0, 13, 0), MSTP("rwdt0", &r_clk, MSTPCR0, 13, 0),
MSTP("mfi0", &div4_clks[DIV4_P], MSTPCR0, 11, 0), MSTP("mfi0", &div4_clks[DIV4_P], MSTPCR0, 11, 0),
MSTP("flctl0", &div4_clks[DIV4_P], MSTPCR0, 10, 0), MSTP("flctl0", &div4_clks[DIV4_P], MSTPCR0, 10, 0),
......
...@@ -170,7 +170,6 @@ static struct platform_device veu1_device = { ...@@ -170,7 +170,6 @@ static struct platform_device veu1_device = {
static struct sh_timer_config cmt_platform_data = { static struct sh_timer_config cmt_platform_data = {
.channel_offset = 0x60, .channel_offset = 0x60,
.timer_bit = 5, .timer_bit = 5,
.clk = "cmt0",
.clockevent_rating = 125, .clockevent_rating = 125,
.clocksource_rating = 200, .clocksource_rating = 200,
}; };
...@@ -200,7 +199,6 @@ static struct platform_device cmt_device = { ...@@ -200,7 +199,6 @@ static struct platform_device cmt_device = {
static struct sh_timer_config tmu0_platform_data = { static struct sh_timer_config tmu0_platform_data = {
.channel_offset = 0x04, .channel_offset = 0x04,
.timer_bit = 0, .timer_bit = 0,
.clk = "tmu0",
.clockevent_rating = 200, .clockevent_rating = 200,
}; };
...@@ -229,7 +227,6 @@ static struct platform_device tmu0_device = { ...@@ -229,7 +227,6 @@ static struct platform_device tmu0_device = {
static struct sh_timer_config tmu1_platform_data = { static struct sh_timer_config tmu1_platform_data = {
.channel_offset = 0x10, .channel_offset = 0x10,
.timer_bit = 1, .timer_bit = 1,
.clk = "tmu0",
.clocksource_rating = 200, .clocksource_rating = 200,
}; };
...@@ -258,7 +255,6 @@ static struct platform_device tmu1_device = { ...@@ -258,7 +255,6 @@ static struct platform_device tmu1_device = {
static struct sh_timer_config tmu2_platform_data = { static struct sh_timer_config tmu2_platform_data = {
.channel_offset = 0x1c, .channel_offset = 0x1c,
.timer_bit = 2, .timer_bit = 2,
.clk = "tmu0",
}; };
static struct resource tmu2_resources[] = { static struct resource tmu2_resources[] = {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment